Search found 7936 matches

by aimeos
17 May 2024, 09:06
Forum: Laravel package
Topic: New added product preview image (in 720) is not shown in product details page.
Replies: 20
Views: 13560

Re: New added product preview image (in 720) is not shown in product details page.

You've missed the 'controller' key where it must be merged below and guess this won't work too:

Code: Select all

'previews' => array_merge(config('controller.common.media.product.previews', []), [
by aimeos
17 May 2024, 08:50
Forum: Laravel package
Topic: New added product preview image (in 720) is not shown in product details page.
Replies: 20
Views: 13560

Re: New added product preview image (in 720) is not shown in product details page.

Please show your merged ./config/shop.php (without the credentials).
by aimeos
16 May 2024, 14:51
Forum: Laravel package
Topic: Import coupons, not only codes?
Replies: 1
Views: 905

Re: Import coupons, not only codes?

At the moment no, only codes for existing coupon configurations can be imported and the uploaded files are imported for exactly that configuration. The files are imported via cronjobs because you can easily exceed the maximum execution time of requests if the file contains enough codes and this woul...
by aimeos
15 May 2024, 10:16
Forum: TYPO3 extension
Topic: Outdated dependencies for 2023.10.x-dev
Replies: 2
Views: 1535

Re: Outdated dependencies for 2023.10.x-dev

Done and that shouldn't be a problem in the future any more.
by aimeos
15 May 2024, 06:54
Forum: Laravel package
Topic: Article URL also with article code (instead of label only)
Replies: 1
Views: 1785

Re: Article URL also with article code (instead of label only)

This is one possible option but it doesn't exists in Aimeos yet you have have to build it on your own. Another option would be to use the product ID in the URL by removing "d_prodid" from the "client/html/catalog/detail/url/filter" option: https://github.com/aimeos/aimeos-laravel...
by aimeos
15 May 2024, 06:49
Forum: Laravel package
Topic: Change the order of subparts
Replies: 1
Views: 1371

Re: Change the order of subparts

Yes, overwrite this configuration in your ./config/shop.php and add your subparts where it should be displayed:
https://github.com/aimeos/ai-admin-jqad ... #L123-L138
by aimeos
15 May 2024, 06:47
Forum: Laravel package
Topic: Utilizing Vue2 Libraries in the Admin
Replies: 3
Views: 1888

Re: Utilizing Vue2 Libraries in the Admin

In Aimeos 2024.x it's fairly simply because you can overwrite the Aimeos.app() method in your own JS file: https://github.com/aimeos/ai-admin-jqadm/blob/master/js/admin.js#L123-L139 Something like this should do the job: // in libs.js to create a new JS bundle using NPM import 'vuetify/styles' impor...
by aimeos
14 May 2024, 08:58
Forum: Laravel package
Topic: New added product preview image (in 720) is not shown in product details page.
Replies: 20
Views: 13560

Re: New added product preview image (in 720) is not shown in product details page.

The base URL for images is defined here: https://github.com/aimeos/aimeos/blob/master/config/shop.php#L137 In the templates, the real URLs are created by calling the "$this->content()" view helper, e.g.: <img src="<?= $enc->attr( $this->content( $mediaItem->getPreview(), $mediaItem->g...