Search found 8317 matches

by aimeos
02 Dec 2024, 13:56
Forum: Laravel package
Topic: Basket locale() error after upgrade to 2024.10
Replies: 6
Views: 4112

Re: Basket locale() error after upgrade to 2024.10

Can you please check if this is because the price class property has been moved from the Base.php to Standard.php?
by aimeos
02 Dec 2024, 09:47
Forum: TYPO3 extension
Topic: Get Prices of Attributes
Replies: 9
Views: 6375

Re: Get Prices of Attributes

That have already been updated in the latest version of the extension
by aimeos
02 Dec 2024, 09:38
Forum: Laravel package
Topic: Basket locale() error after upgrade to 2024.10
Replies: 6
Views: 4112

Re: Basket locale() error after upgrade to 2024.10

Hopefully, this fixes the problem:
https://github.com/aimeos/aimeos-core/c ... e1db475bb9

Most relevant are the last two modified lines in locale() and setLocale().
by aimeos
29 Nov 2024, 14:23
Forum: TYPO3 extension
Topic: Get Prices of Attributes
Replies: 9
Views: 6375

Re: Get Prices of Attributes

The problem is that this TypoScript configuration overwrites the default decorators: plugin.tx_aimeos.settings.mshop.attribute.manager.decorators.global.CustomerGroup = CustomerGroup plugin.tx_aimeos.settings.mshop.catalog.manager.decorators.local.CatalogCustomerGroup = CatalogCustomerGroup plugin.t...
by aimeos
28 Nov 2024, 14:11
Forum: Laravel package
Topic: Basket locale() error after upgrade to 2024.10
Replies: 6
Views: 4112

Re: Basket locale() error after upgrade to 2024.10

The values in the content column of the mshop_order_basket table are base64 encoded, PHP serialized order items. They have a locale item when being serialized but it seems that PHP can't un-serialize it in your new setup. Also, we are not aware that something relevant has changed in locale items (th...
by aimeos
28 Nov 2024, 14:00
Forum: Help
Topic: How to Include Property Labels in Product Property Attributes Using JSON:API?
Replies: 3
Views: 5404

Re: How to Include Property Labels in Product Property Attributes Using JSON:API?

Can you please update the JSON:API package to get the required bugfix by executing:

Code: Select all

composer req aimeos/ai-client-jsonapi:2024.10.x-dev
Then, use "include=product.property,product.property.type" to get the product properties and their types.
by aimeos
28 Nov 2024, 11:56
Forum: TYPO3 extension
Topic: Get Prices of Attributes
Replies: 9
Views: 6375

Re: Get Prices of Attributes added by Supplier

Tested locally with ai-customergroups:2024.10.x-dev installed by adding a hidden attribute with a price to a product and fetching/displaying it in the catalog detail view worked without problems. The pure existence of the ai-customergroups extension can't be the reason for that. Did you assign a cus...
by aimeos
28 Nov 2024, 11:35
Forum: TYPO3 extension
Topic: basket issue
Replies: 12
Views: 40734

Re: basket issue

Tested aimeos/aimeos-typo3 2024.10.x-dev locally with an empty price and it works as expected so this can't be the reason for the behavior you observe.

Can you check if the request contains the FE cookie and if the server sends a new FE cookie value in the response?
by aimeos
28 Nov 2024, 11:31
Forum: TYPO3 extension
Topic: pricing rules on product detail page
Replies: 11
Views: 33653

Re: pricing rules on product detail page

Rules are applied to all related products if the parent product matches the conditions or not.
by aimeos
27 Nov 2024, 14:06
Forum: Laravel package
Topic: Trouble Displaying Selected Value for Custom Columns in jqadmin Template
Replies: 1
Views: 2925

Re: Trouble Displaying Selected Value for Custom Columns in jqadmin Template

Can you check if this works: private $attr = [ 'product.is_testdrive' => [ 'internalcode' => 'is_testdrive', 'label' => 'Is Test Drive', 'type' => 'bool', ], 'product.location' => [ 'internalcode' => 'location', 'label' => 'Location', ], ]; See: https://aimeos.org/docs/latest/models/extend-managers/...