Search found 8624 matches

by aimeos
29 May 2025, 13:46
Forum: Help
Topic: Boost for products
Replies: 1
Views: 112999

Re: Boost for products

The boost value is only used when doing a fulltext search. For a regular category list, the position of the product in the category applies (you can check in the Categories > Products sub-panel)
by aimeos
29 May 2025, 13:44
Forum: TYPO3 extension
Topic: Scheduler Task Problem
Replies: 7
Views: 656538

Re: Scheduler Task Problem

The JS error for dark mode is already fixed and will be part of the next release. Can you check why the order e-mail are sent more than once? Is the record with "email-sent" as type and "5" (authorized) or "6" (received) as value isn't created and if yes, what happened ...
by aimeos
27 May 2025, 10:50
Forum: Help
Topic: Klarna Payment
Replies: 3
Views: 321634

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.
by aimeos
27 May 2025, 10:42
Forum: TYPO3 extension
Topic: Product import xml: Texts with html entities
Replies: 5
Views: 415954

Re: Product import xml: Texts with html entities

The content and attributes will be properly decoded in the 2025.10 release.
by aimeos
27 May 2025, 08:36
Forum: TYPO3 extension
Topic: Scheduler Task Problem
Replies: 7
Views: 656538

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. ...
by aimeos
27 May 2025, 08:22
Forum: Laravel package
Topic: Add html in cms content in admin.
Replies: 1
Views: 214719

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...
by aimeos
22 May 2025, 15:09
Forum: Laravel package
Topic: Price configuration options
Replies: 3
Views: 172111

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();
}
by aimeos
22 May 2025, 15:04
Forum: Laravel package
Topic: JSON API & OmniPay
Replies: 3
Views: 195141

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.
by aimeos
20 May 2025, 15:00
Forum: Laravel package
Topic: After upgrade to 2024.10.4 - getRefItems doesn't return data
Replies: 3
Views: 174182

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.
by aimeos
20 May 2025, 07:06
Forum: TYPO3 extension
Topic: Product import xml: Texts with html entities
Replies: 5
Views: 415954

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...