Search found 33 matches

by parmonov98
10 Oct 2020, 12:53
Forum: Laravel package
Topic: Get Mini Basket With Product Images also
Replies: 15
Views: 5750

Re: Get Mini Basket With Product Images also

What's your code for adding the image in the mini basket? The basket product itself has no URL because it depends on the configured target page. You can generate the URL easily using the URL view helper using: $this->link( 'client/html/catalog/detail/url', [<params>] ) be kind, tell me what to pass...
by parmonov98
10 Oct 2020, 12:38
Forum: Laravel package
Topic: How can I change target?
Replies: 1
Views: 709

How can I change target?

I use HomeController. /home route path and index method with name 'homepage'. https://i.imgur.com/klZneUO.png https://i.imgur.com/mfZmGnC.png where is 'shop' coming from? What is the 'client/html/catalog/tree/url/target'? I wanna get target of homepage(home) for the l_type on page homepage. how can ...
by parmonov98
10 Oct 2020, 10:06
Forum: Laravel package
Topic: what are partial and subparts? and my complain
Replies: 1
Views: 844

what are partial and subparts? and my complain

what is partial and subparts? I want a brief explanation of how components work under the hood. https://imgur.com/RSeLVE7 - first arrow pointing is a component, that's understandable. what is the second one? is a partial or a subpart? what I'd like to understand is what are these line doing here? ht...
by parmonov98
10 Oct 2020, 09:41
Forum: Laravel package
Topic: Generate Product URL in Laravel Controller
Replies: 8
Views: 3973

Re: Generate Product URL in Laravel Controller

Sorry, my fault :-( The view must be instantiated separately: $context = app( 'aimeos.context' )->get(); $tmplPaths = app( 'aimeos' )->get()->getCustomPaths( 'client/html/templates' ); $view = app( 'aimeos.view' )->get( $context, $tmplPaths, $context->getLocale()->getLanguageId() ); I'm getting an ...
by parmonov98
10 Oct 2020, 09:26
Forum: Help
Topic: Get all products - except those with parents
Replies: 4
Views: 1645

Re: Get all products - except those with parents

It's possible but usually you want all products that are at least in one category (default and selection products): $manager = \Aimeos\MShop::create($context, 'index'); $search = $manager->createSearch(true); $expr = [ $search->compare('!=', 'index.catalog.id', null), $search->getConditions() ]; $s...
by parmonov98
09 Oct 2020, 17:34
Forum: Laravel package
Topic: Get Mini Basket With Product Images also
Replies: 15
Views: 5750

Re: Get Mini Basket With Product Images also

how about to get a url of the product in basket?
I didn't find an url returner method on https://aimeos.org/api/latest/class-Aim ... ndard.html.


https://imgur.com/3vtF4is
there is not url. or how can I generate it?
by parmonov98
09 Oct 2020, 04:08
Forum: Help
Topic: help with overwriting components
Replies: 3
Views: 1276

help with overwriting components

How to create a decorator and where to place it and how to configure in config/shop.php

please, with detailed instruction. I read in aimeos docs, but I got confused where to put and to configure.
by parmonov98
08 Oct 2020, 04:44
Forum: Laravel package
Topic: how to use catalog-filter-search singly in header of shop page?
Replies: 6
Views: 2119

Re: how to use catalog-filter-search singly in header of shop page?

Hey, Admin! I want the same thing, I changed config in shop.php. catalog/filter to catalog/search but it thew the error:
https://imgur.com/pF0Vti5

what am I supposed here? change aimeos-laravel package? or do you have another solution?
by parmonov98
07 Oct 2020, 04:07
Forum: Laravel package
Topic: my custom theme is not working
Replies: 1
Views: 1113

my custom theme is not working

Can I change config to use a custom theme? I have created an extenstion called elmobile. after that I tested components by copying some components from ai-client-html/../templates into elmobile/../template. I gave an inline styling that worked. but when I try to create custom theme is not getting ap...