Search found 8619 matches
- 27 May 2025, 08:22
- Forum: Laravel package
- Topic: Add html in cms content in admin.
- Replies: 1
- Views: 212558
Re: Add html in cms content in admin.
Headings are available in the list of elements you can enter in the CMS module. If you want to insert HTML code directly, you need to create a content block like the existing ones: https://github.com/aimeos/ai-cms-grapesjs/blob/master/themes/admin/jqadm/custom.js#L235 Also, you need to create a comp...
- 22 May 2025, 15:09
- Forum: Laravel package
- Topic: Price configuration options
- Replies: 3
- Views: 170516
Re: Price configuration options
To get the configuration stored in the list item, you have to use:
Code: Select all
foreach( $product->getListItems( 'price' ) as $listItem )
{
$config = $listItem->getConfigValue( 'key' );
$price = $listItem->getRefItem();
}
- 22 May 2025, 15:04
- Forum: Laravel package
- Topic: JSON API & OmniPay
- Replies: 3
- Views: 193259
Re: JSON API & OmniPay
You persist the basket as order via the JSON REST API and the payment status is updated by the payment gateways server (server to server update because you can't set the payment status of an order via the JSON API for obvious reasons). The rest of the processing is async done by cronjobs.
- 20 May 2025, 15:00
- Forum: Laravel package
- Topic: After upgrade to 2024.10.4 - getRefItems doesn't return data
- Replies: 3
- Views: 172481
Re: After upgrade to 2024.10.4 - getRefItems doesn't return data
Only if you want to remove entries or overwrite settings with arrays completely. Otherwise, add them to the config files in your package because then, only the listed parts are added or overwritten.
- 20 May 2025, 07:06
- Forum: TYPO3 extension
- Topic: Product import xml: Texts with html entities
- Replies: 5
- Views: 412043
Re: Product import xml: Texts with html entities
It's most likely due to the $enc->xml() calls here which escapes the "<" and ">" characters: https://github.com/aimeos/ai-controller-jobs/blob/master/templates/controller/jobs/product/export/items-partial-text-standard.php#L33 The best solution might be to transform the HTML enti...
- 20 May 2025, 07:01
- Forum: Laravel package
- Topic: After upgrade to 2024.10.4 - getRefItems doesn't return data
- Replies: 3
- Views: 172481
Re: After upgrade to 2024.10.4 - getRefItems doesn't return data
Fetching list items has been moved to a decorator:
https://github.com/aimeos/aimeos-core/b ... ct.php#L13
If you replace the list of decorators with an own configuration and didn't add the new decorator names, the list items won't be fetched any more.
https://github.com/aimeos/aimeos-core/b ... ct.php#L13
If you replace the list of decorators with an own configuration and didn't add the new decorator names, the list items won't be fetched any more.
- 20 May 2025, 06:54
- Forum: Laravel package
- Topic: JSON API & OmniPay
- Replies: 3
- Views: 193259
Re: JSON API & OmniPay
If you use the JSON API only to build your own PWA, the existing Aimeos payment integrations are only helpful for the communication from the payment service provider back to your shop server when updating the payment status in an asynchronous way. This is because in PWAs, handling the payment requir...
- 20 May 2025, 06:41
- Forum: Help
- Topic: Klarna Payment
- Replies: 3
- Views: 318613
Re: Klarna Payment
We support all payment gateways through Omnipay and if one of the drivers is out of date or missing, you should update or implement it. This should be preferred over a direct integration using the Aimeos payment service provider interface.
- 15 May 2025, 13:42
- Forum: TYPO3 extension
- Topic: Product import xml: Texts with html entities
- Replies: 5
- Views: 412043
Re: Product import xml: Texts with html entities
Are the HTML entities in the XML file or only after the import in the new system?
- 13 May 2025, 05:10
- Forum: TYPO3 extension
- Topic: Scheduler Job for anonymizing: anonymized adresses are not saved
- Replies: 2
- Views: 169548
Re: Scheduler Job for anonymizing: anonymized adresses are not saved
Don't create the index manager (you don't use it) and open a DB transaction which you don't commit afterwards. All your changes are rolled back at the end of the task.