Search found 7894 matches

by aimeos
21 Apr 2024, 09:42
Forum: Laravel package
Topic: can't manage categories
Replies: 2
Views: 3232

Re: can't manage categories

Thanks for the hint! The problem has been fixed and a new package version has been released.
Run "composer up" to get the latest version.
by aimeos
21 Apr 2024, 09:41
Forum: Laravel package
Topic: CMS pages
Replies: 5
Views: 5090

Re: CMS pages

Thanks for the hint! The problem has been fixed and a new package version has been released.
Run "composer up" to get the latest version.
by aimeos
19 Apr 2024, 14:58
Forum: Help
Topic: make the Invoice not required
Replies: 1
Views: 3689

Re: make the Invoice not required

The aimeos/aimeos-core package has been updated to allow NULL values now.
by aimeos
19 Apr 2024, 14:57
Forum: Laravel package
Topic: Importing stock deletes product ref items like images and text
Replies: 2
Views: 4341

Re: Importing stock deletes product ref items like images and text

You are right, for document-oriented storages, only the basic product data has been saved when updating the instock value. This has been fixed in this commit: https://github.com/aimeos/ai-controller-jobs/commit/863c7f520ec36f3ffa9e0b3d05213f814b278469 You can get the fixed version until a new releas...
by aimeos
19 Apr 2024, 12:44
Forum: Laravel package
Topic: Custom Links in Subparts
Replies: 3
Views: 7444

Re: Custom Links in Subparts

Like said, the subpart can be linked to be adding its ID as URL fragment, e.g.:

Code: Select all

<div id="league">...</div>

http://localhost:8000/admin/jqadm/season/get/1#league
by aimeos
19 Apr 2024, 12:42
Forum: Laravel package
Topic: Custom.css changes arent working
Replies: 6
Views: 12072

Re: Custom.css changes arent working

Which Aimeos version do you use?
by aimeos
19 Apr 2024, 12:41
Forum: Laravel package
Topic: Currency Session
Replies: 3
Views: 5831

Re: Currency Session

No, it's not possible to store the locale and currency in the session and remove them from the URL. This would cause massive caching problems where pages with wrong languages/currencies would be served because the URL isn't unique any more.
by aimeos
19 Apr 2024, 12:39
Forum: Laravel package
Topic: Product import takes too long
Replies: 8
Views: 8545

Re: Product import takes too long

Which importer do you use? CSV, XML or an own implementation?
by aimeos
19 Apr 2024, 12:38
Forum: TYPO3 extension
Topic: Show wishlist as catalog list
Replies: 1
Views: 4168

Re: Show wishlist as catalog list

No, account/favorite is an own component independent of the catalog/lists component.
By default, it only support pagination and is ordered by newest items first. If you want to enable filtering, you have to extend the component.
by aimeos
18 Apr 2024, 11:29
Forum: Laravel package
Topic: Overriding Status Names
Replies: 2
Views: 5839

Re: Overriding Status Names

The translation domain is "mshop/code":

Code: Select all

'i18n' => [
    'en' => [
        'mshop/code' => [
            'status:1' => ['Active'],
        ],
    ],
],
See also: https://aimeos.org/docs/latest/laravel/ ... anslations