Search found 7914 matches

by aimeos
10 Oct 2020, 09:32
Forum: Help
Topic: Get all products - except those with parents
Replies: 4
Views: 1602

Re: Get all products - except those with parents

It's the central dependency container. How to retrieve it depends on your environment: - Laravel: https://aimeos.org/docs/latest/laravel/extend/#use-the-aimeos-objects - Symfony: https://aimeos.org/docs/latest/symfony/extend/#use-the-aimeos-objects - TYPO3: https://aimeos.org/docs/latest/typo3/exten...
by aimeos
10 Oct 2020, 08:57
Forum: TYPO3 extension
Topic: [Solved] Update problem 20.7.4
Replies: 2
Views: 1203

Re: Update problem 20.7.4

Can you post the output of "composer show" and run "composer update" so there's no dependency update missing?
by aimeos
10 Oct 2020, 08:55
Forum: Laravel package
Topic: Get Mini Basket With Product Images also
Replies: 15
Views: 5602

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:

Code: Select all

$this->link( 'client/html/catalog/detail/url', [<params>] )
by aimeos
09 Oct 2020, 09:16
Forum: Laravel package
Topic: how to use catalog-filter-search singly in header of shop page?
Replies: 6
Views: 2081

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

We've simplified this in aimeos/aimeos-laravel:2020.10.x-dev so you don't need to adapt the Blade templates any more :-)
by aimeos
09 Oct 2020, 09:09
Forum: Help
Topic: help with overwriting components
Replies: 3
Views: 1252

Re: help with overwriting components

What kind of decorator? For an HTML client or something else?
by aimeos
09 Oct 2020, 09:08
Forum: Help
Topic: Instamojo payment integration in Aimeos laravel
Replies: 1
Views: 738

Re: Instamojo payment integration in Aimeos laravel

Install the aimeos/ai-payments extension and configure your new payment service:
https://aimeos.org/docs/2020.x/manual/s ... ay-generic
by aimeos
09 Oct 2020, 09:06
Forum: Laravel package
Topic: Need to add new functionality
Replies: 13
Views: 5874

Re: Need to add new functionality

Rating and reviews are part of the aimeos/aimeos-laravel:2020.10.x-dev package released yesterday :-)
by aimeos
09 Oct 2020, 08:58
Forum: Laravel package
Topic: Aimeos Review Comments featured not working
Replies: 1
Views: 804

Re: Aimeos Review Comments featured not working

Reviewing products is only possible after login and for bought products. This was done to avoid fighting with fake reviews. Maybe it's a good idea to add another button "Write review" which links to the profile. To see the products you've bought and you can review (after 5 days, which is c...
by aimeos
08 Oct 2020, 11:58
Forum: Laravel package
Topic: how to use catalog-filter-search singly in header of shop page?
Replies: 6
Views: 2081

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

You have to copy the ./vendor/aimeos/aimeos-laravel/src/views/ to resources/views/vendor/shop/ and adapt them, i.e. remove the catalog/filter and add the catalog/search part
by aimeos
08 Oct 2020, 11:55
Forum: TYPO3 extension
Topic: how can i find the jsonadmin endpoint in typo3
Replies: 8
Views: 5617

Re: how can i find the jsonadmin endpoint in typo3

The URL is: http://localhost/typo3/index.php?route=%2Fweb%2FAimeosTxAimeosAdmin%2F&token=...&tx_aimeos_web_aimeostxaimeosadmin%5Bsite%5D=default&tx_aimeos_web_aimeostxaimeosadmin%5Bcontroller%5D=Jsonadm&tx_aimeos_web_aimeostxaimeosadmin%5Baction%5D=index You can use an OPTIONS reques...