Search found 7940 matches

by aimeos
15 May 2024, 06:54
Forum: Laravel package
Topic: Article URL also with article code (instead of label only)
Replies: 1
Views: 1878

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: 1464

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: 2045

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: 13928

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...
by aimeos
14 May 2024, 07:37
Forum: Laravel package
Topic: New added product preview image (in 720) is not shown in product details page.
Replies: 20
Views: 13928

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

Did you enable/change the ASSET_URL in your .env file?
https://github.com/aimeos/aimeos/blob/m ... example#L7

If yes, try to remove that setting as it's only useful for remote cloud storages
by aimeos
13 May 2024, 06:29
Forum: Laravel package
Topic: New added product preview image (in 720) is not shown in product details page.
Replies: 20
Views: 13928

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

You can influence what the browser is choosing by removing e.g. the 960px image size to force the browser to use the next best one, which is 720px in your case.
by aimeos
13 May 2024, 06:27
Forum: Help
Topic: Import product on database (SQL Directly)
Replies: 1
Views: 2323

Re: Import product on database (SQL Directly)

You have to index your products so they are found. Assuming you are using Laravel, execcute this command:

Code: Select all

php artisan aimeos:jobs index/rebuild
by aimeos
12 May 2024, 13:04
Forum: Laravel package
Topic: New added product preview image (in 720) is not shown in product details page.
Replies: 20
Views: 13928

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

Everything is correct but the browser selects itself which image it will use. You can only influence that partially with a different imageset-sizes configuration.
by aimeos
10 May 2024, 07:16
Forum: TYPO3 extension
Topic: CSV Stock Import Duplicate Entry Error
Replies: 3
Views: 8998

Re: CSV Stock Import Duplicate Entry Error

Would be interesting to find out why and what line is causing that.
by aimeos
09 May 2024, 07:51
Forum: Laravel package
Topic: SQLSRV configuration.
Replies: 3
Views: 7701

Re: SQLSRV configuration.

The Aimeos database layer uses PDO directly. Check the internet if there are any special settings necessary for SQL server connections with TLS enabled.