Search found 8632 matches
- 03 Jul 2025, 09:22
- Forum: TYPO3 extension
- Topic: Index rebuild with more than one site
- Replies: 3
- Views: 438889
Re: Index rebuild with more than one site
Unfortunately, we can't reproduce the issue. The selected sites in the scheduler task are used to execute the job controller regardless if the task is executed in the frontend, by a cronjob or the job command executed on CLI. Do you have more information or can you add a bit of debugging to hunt dow...
- 03 Jul 2025, 08:17
- Forum: Laravel package
- Topic: JQADM search with wildcard?
- Replies: 1
- Views: 64997
Re: JQADM search with wildcard?
Overwrite the template in your own extension where you want to use a "%...%" based search and add "~=" as operator, e.g. here: https://github.com/aimeos/ai-admin-jqadm/blob/master/templates/admin/jqadm/customer/list.php#L191 Example: 'customer.company' => ['op' => '~='], This ena...
- 03 Jul 2025, 08:07
- Forum: Laravel package
- Topic: Problem with jsonapi product (with image)
- Replies: 4
- Views: 89277
Re: Problem with jsonapi product (with image)
Guess, the problem is somewhere else. The product isn't returned by the JSON API most likely even if you add no "include" parameter at all. Can you check and see if this product is enabled and doesn't have any start/end time restrictions?
- 30 Jun 2025, 17:55
- Forum: TYPO3 extension
- Topic: Registering Decorator to Manager
- Replies: 1
- Views: 35326
Re: Registering Decorator to Manager
Your approach is correct but you are simply targeting the wrong manager. The attribute manager is only called when attributes are saved but they are only referenced by products so they are never changed. You have to wrap your decorator around the index manager class instead.
- 20 Jun 2025, 11:26
- Forum: TYPO3 extension
- Topic: Catalog Filter Behavior
- Replies: 2
- Views: 364195
Re: Catalog Filter Behavior
2- When filtering catalog list results via attribute, supplier, search or tree filter, price filter is also triggered even if you don't click the "Save" button of price filter. This only applies if you use the Catalog Filter plug-in. But if you exclude price filter from Catalog Filter plu...
- 19 Jun 2025, 14:54
- Forum: Help
- Topic: Filtering by order date does not work
- Replies: 3
- Views: 40740
Re: Filtering by order date does not work
Thanks for the bug report!
We can confirm the issue and are working on a solution which will be part of the next release.
We can confirm the issue and are working on a solution which will be part of the next release.
- 17 Jun 2025, 15:02
- Forum: Help
- Topic: Change Main Slider
- Replies: 1
- Views: 10956
Re: Change Main Slider
The images of type "stage" from the root and first level categories are shown in the catalog home component.
- 11 Jun 2025, 07:18
- Forum: TYPO3 extension
- Topic: Scheduler Task Problem
- Replies: 9
- Views: 1177302
Re: Scheduler Task Problem
In the mshop_order_status table, there are records for each order. At least one of them has the type "email-sent" with the number that is equal to the payment status value and this is the marker for Aimeos that the email for e.g. the "authorized" payment status (value: "5&qu...
- 10 Jun 2025, 07:00
- Forum: Laravel package
- Topic: Frontend changes not showing
- Replies: 4
- Views: 666668
Re: Frontend changes not showing
To overwrite the base.blade.php template of the Aimeos extension, you have to place your copy in vendor\aimeos\aimeos-laravel\views\vendor\shop\base.blade.php. See: https://aimeos.org/docs/latest/laravel/ ... -templates
- 07 Jun 2025, 10:07
- Forum: Laravel package
- Topic: Custom email queue backed by database
- Replies: 4
- Views: 461107
Re: Custom email queue backed by database
Use this config for your own queue class:
You can see how other queue adapters are implemented here: https://github.com/aimeos/ai-mqueue
Code: Select all
'mq' => [
'adapter' => 'DBQueueTeam',
// implementation specific configuration
// ...
],