Search found 8317 matches
- 02 Dec 2024, 13:56
- Forum: Laravel package
- Topic: Basket locale() error after upgrade to 2024.10
- Replies: 6
- Views: 4073
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?
- 02 Dec 2024, 09:47
- Forum: TYPO3 extension
- Topic: Get Prices of Attributes
- Replies: 9
- Views: 6331
Re: Get Prices of Attributes
That have already been updated in the latest version of the extension
- 02 Dec 2024, 09:38
- Forum: Laravel package
- Topic: Basket locale() error after upgrade to 2024.10
- Replies: 6
- Views: 4073
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().
https://github.com/aimeos/aimeos-core/c ... e1db475bb9
Most relevant are the last two modified lines in locale() and setLocale().
- 29 Nov 2024, 14:23
- Forum: TYPO3 extension
- Topic: Get Prices of Attributes
- Replies: 9
- Views: 6331
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...
- 28 Nov 2024, 14:11
- Forum: Laravel package
- Topic: Basket locale() error after upgrade to 2024.10
- Replies: 6
- Views: 4073
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...
- 28 Nov 2024, 14:00
- Forum: Help
- Topic: How to Include Property Labels in Product Property Attributes Using JSON:API?
- Replies: 3
- Views: 5383
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:
Then, use "include=product.property,product.property.type" to get the product properties and their types.
Code: Select all
composer req aimeos/ai-client-jsonapi:2024.10.x-dev
- 28 Nov 2024, 11:56
- Forum: TYPO3 extension
- Topic: Get Prices of Attributes
- Replies: 9
- Views: 6331
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...
- 28 Nov 2024, 11:35
- Forum: TYPO3 extension
- Topic: basket issue
- Replies: 12
- Views: 40690
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?
Can you check if the request contains the FE cookie and if the server sends a new FE cookie value in the response?
- 28 Nov 2024, 11:31
- Forum: TYPO3 extension
- Topic: pricing rules on product detail page
- Replies: 11
- Views: 33609
Re: pricing rules on product detail page
Rules are applied to all related products if the parent product matches the conditions or not.
- 27 Nov 2024, 14:06
- Forum: Laravel package
- Topic: Trouble Displaying Selected Value for Custom Columns in jqadmin Template
- Replies: 1
- Views: 2910
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/...