Search found 8632 matches
- 27 May 2025, 10:50
- Forum: Help
- Topic: Klarna Payment
- Replies: 3
- Views: 515580
Re: Klarna Payment
If you can give us more information about the problem in the Omnipay driver for Sofort payments, then we can fix it.
- 27 May 2025, 10:42
- Forum: TYPO3 extension
- Topic: Product import xml: Texts with html entities
- Replies: 5
- Views: 660732
Re: Product import xml: Texts with html entities
The content and attributes will be properly decoded in the 2025.10 release.
- 27 May 2025, 08:36
- Forum: TYPO3 extension
- Topic: Scheduler Task Problem
- Replies: 9
- Views: 1184885
Re: Scheduler Task Problem
1- After updating to Aimeos V25.4.1, order related e-mails are constantly being sent to the receiver. Do you have any error messages in the Log panel? 2- When importing products from CSV, every 1000 st line is ignored and is not being imported. For example, you have 3000 products in your CSV file. ...
- 27 May 2025, 08:22
- Forum: Laravel package
- Topic: Add html in cms content in admin.
- Replies: 1
- Views: 349249
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: 272866
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: 312444
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: 279030
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: 660732
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: 279030
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: 312444
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...