Search found 8261 matches

by aimeos
08 Nov 2024, 13:46
Forum: TYPO3 extension
Topic: Not allowed to access JQAdm "dashboard" client
Replies: 5
Views: 137

Re: Not allowed to access JQAdm "dashboard" client

The problem was here: https://github.com/aimeos/aimeos-typo3/ ... 4ecb73073c

The fix is available in dev-master and 2024.10.x-dev and will be part of the next 24.10.2 release.
by aimeos
08 Nov 2024, 13:38
Forum: TYPO3 extension
Topic: Not allowed to access JQAdm "dashboard" client
Replies: 5
Views: 137

Re: Not allowed to access JQAdm "dashboard" client

There had been a change for TYPO3 v13 due to deprecations:
https://github.com/aimeos/aimeos-typo3/ ... 87aae2c879

Can you check what's returned for non-admin backend users and why?
by aimeos
08 Nov 2024, 12:18
Forum: TYPO3 extension
Topic: Adapting Text Index
Replies: 6
Views: 2169

Re: Adapting Text Index

also I don't see a reason why the index does include disabled products. the related texts shouldn't show up in search results. You are right, disabled products doesn't make much sense and products with a passed end date too. Both are not indexed any more now and the change will be in the next 24.10...
by aimeos
08 Nov 2024, 07:57
Forum: Help
Topic: JsonApi search by product attribute
Replies: 1
Views: 59

Re: JsonApi search by product attribute

Use f_attrid, f_optid or f_oneid for searching for attributes:
https://aimeos.org/docs/latest/frontend ... attributes
by aimeos
08 Nov 2024, 07:56
Forum: Help
Topic: How do I customize the context.php in vendor folder?
Replies: 4
Views: 1973

Re: How do I customize the context.php in vendor folder?

1. If there is any setup I can do to override the context.php file (just like overriding the model manager through custom extension), and No, and the approach is wrong. Try to find out why the customer item isn't loaded here: https://github.com/aimeos/aimeos-laravel/blob/master/src/Base/Context.php...
by aimeos
08 Nov 2024, 07:36
Forum: Help
Topic: Issue with Price Sorting After Implementing Custom Discount Provider and Exclude Product Decorator in Price Rules
Replies: 1
Views: 112

Re: Issue with Price Sorting After Implementing Custom Discount Provider and Exclude Product Decorator in Price Rules

Short answer: You can't! You are manipulating the prices after they have been sorted by the database. The only thing you can do is to resort the products by the new price in the catalog list template for that page but then, the prices on the next page can still be higher/lower than the prices on the...
by aimeos
08 Nov 2024, 07:31
Forum: Laravel package
Topic: Menu - Add CMS Page
Replies: 1
Views: 187

Re: Menu - Add CMS Page

The current menu displays the category tree but no CMS pages. For adding links to CMS pages, you have to adapt the base.blade.php template and add the links to the pages there: https://aimeos.org/docs/latest/laravel/extend/#aimeos-blade-templates The footer already contains the links for the pages y...
by aimeos
08 Nov 2024, 07:26
Forum: Help
Topic: How to add stock for each Attribute?
Replies: 3
Views: 361

Re: How to add stock for each Attribute?

Not at the moment but it would be easy to do.
by aimeos
07 Nov 2024, 18:19
Forum: TYPO3 extension
Topic: How can I update a list item like text content
Replies: 6
Views: 604

Re: How can I update a list item like text content

When you load the product, you need to specify with related items you want to load too, e.g.:

Code: Select all

$product = $productManager->find($event->getUid(), ['price', 'text']);
The second parameter of the find() method takes care about that.
by aimeos
07 Nov 2024, 11:36
Forum: Help
Topic: Start date and End date in Price rule is not persistent.
Replies: 5
Views: 3163

Re: Start date and End date in Price rule is not persistent.

Sorry, but 2024.07 isn't supported any more: https://aimeos.org/roadmap Only the LTS version is supported for 1.5 year after release. The stable release before (2024.04 and 2024.07) are only supported until the LTS version has been released. Please update to 2024.10 LTS, it should be possible withou...