Search found 8243 matches

by aimeos
04 Nov 2024, 14:02
Forum: TYPO3 extension
Topic: Adapting Text Index
Replies: 3
Views: 1580

Re: Adapting Text Index

you're right. some products might not have all text types translated. anyway, inserting the lines of code from the current version doesn't change that behaviour. when executing the scheduler task I still get the described error. We've fixed that here: https://github.com/aimeos/aimeos-core/blob/mast...
by aimeos
04 Nov 2024, 13:54
Forum: Help
Topic: Extending Aimeos JSON API to Include Custom Customer Fields
Replies: 2
Views: 461

Re: Extending Aimeos JSON API to Include Custom Customer Fields

This one should be sufficient:
https://aimeos.org/docs/2024.x/models/e ... /#easy-way

Can you show your code and configuration you've added?
by aimeos
04 Nov 2024, 13:52
Forum: Laravel package
Topic: Size Drop down
Replies: 1
Views: 785

Re: Size Drop down

Use "select" here if you want to have a drop-down:
https://github.com/aimeos/aimeos/blob/m ... p.php#L217
by aimeos
01 Nov 2024, 15:59
Forum: TYPO3 extension
Topic: adding stocklevel by PHP controller to new product
Replies: 2
Views: 1229

Re: adding stocklevel by PHP controller to new product

Saving stock needs the product ID, not your event ID and you need to save the product before saving the stock item.
by aimeos
01 Nov 2024, 15:55
Forum: Laravel package
Topic: Upload Image - Not Working
Replies: 2
Views: 1109

Re: Upload Image - Not Working

You have to upload the images in the media tab first. When adding an image, you can only choose from the previously uploaded images.
by aimeos
31 Oct 2024, 17:07
Forum: TYPO3 extension
Topic: Adapting Text Index
Replies: 3
Views: 1580

Re: Adapting Text Index

780: $map['content'] = array_merge( $map['content'], $texts['']['content'] ); Aimeos Version 2022.10.8 The problem is most likely caused because you exclude the product name and there are products without a short or long description. In later versions, the problem doesn't exist any more: https://gi...
by aimeos
30 Oct 2024, 17:49
Forum: Help
Topic: How do I customize the context.php in vendor folder?
Replies: 1
Views: 1528

Re: How do I customize the context.php in vendor folder?

No, that won't work and will result in errors whenever $context->user() is called because you would return an unexpected value. Instead, use

Code: Select all

$context->user()->getId()
by aimeos
30 Oct 2024, 17:45
Forum: Laravel package
Topic: Translate email order
Replies: 1
Views: 1285

Re: Translate email order

You can find the original strings in the template file(s), e.g.: https://github.com/aimeos/ai-controller-jobs/blob/master/templates/controller/jobs/order/email/payment/html.mjml To translate the string, you have to create a PO file (e.g. "en.po" and use the header from the en.po file from ...
by aimeos
28 Oct 2024, 13:33
Forum: Help
Topic: How to fetch catalog media and text.
Replies: 1
Views: 1526

Re: How to fetch catalog media and text.

Guess, you are using Laravel. If you need texts in a specific language, add "&locale=<two letter ISO language code>" to the URL, in your case it should be "&locale=et".
by aimeos
28 Oct 2024, 13:25
Forum: TYPO3 extension
Topic: PHP Warning
Replies: 2
Views: 1747

Re: PHP Warning

Check if you've added a page ID for the catalog detail page in your Aimeos scheduler tasks