Search found 8623 matches

by aimeos
03 Jul 2025, 09:45
Forum: TYPO3 extension
Topic: Scheduler Task Problem
Replies: 7
Views: 655529

Re: Scheduler Task Problem

Sorry, it must be "email-payment" and a value of "5". In our tests using latest TYPO3 13.4.x and latest the Aimeos version, the e-mails have been sent and an entry in the mshop_order_status table has been created - regardless of being executed in the backend or by a cronjob execu...
by aimeos
03 Jul 2025, 09:22
Forum: TYPO3 extension
Topic: Index rebuild with more than one site
Replies: 3
Views: 237377

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...
by aimeos
03 Jul 2025, 08:17
Forum: Laravel package
Topic: JQADM search with wildcard?
Replies: 1
Views: 45

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...
by aimeos
03 Jul 2025, 08:07
Forum: Laravel package
Topic: Problem with jsonapi product (with image)
Replies: 1
Views: 26

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?
by aimeos
30 Jun 2025, 17:55
Forum: TYPO3 extension
Topic: Registering Decorator to Manager
Replies: 1
Views: 84

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.
by aimeos
20 Jun 2025, 11:26
Forum: TYPO3 extension
Topic: Catalog Filter Behavior
Replies: 2
Views: 223807

Re: Catalog Filter Behavior

1- Price filter maximum value is calculated based on the first page of the pagination only. For example, If the maximum price for the first pagination page products is 100 €, and if you have a product with 101 € price in the second page, then this product is not displayed after filtering. We are cu...
by aimeos
19 Jun 2025, 14:54
Forum: Help
Topic: Filtering by order date does not work
Replies: 2
Views: 340

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.
by aimeos
17 Jun 2025, 15:02
Forum: Help
Topic: Change Main Slider
Replies: 1
Views: 179

Re: Change Main Slider

The images of type "stage" from the root and first level categories are shown in the catalog home component.
by aimeos
11 Jun 2025, 07:18
Forum: TYPO3 extension
Topic: Scheduler Task Problem
Replies: 7
Views: 655529

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...
by aimeos
10 Jun 2025, 07:00
Forum: Laravel package
Topic: Frontend changes not showing
Replies: 4
Views: 429604

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