Search found 125 matches

by columbo
08 Dec 2023, 12:54
Forum: Laravel package
Topic: add from order-history with deactivated products -> error
Replies: 3
Views: 2108

add from order-history with deactivated products -> error

Hi, all products are listed in the order history as available, even if they have been deactivated in the meantime. customer adds a "history-basket" to his current basket history-basket contains at least one deactivated product -> Error Eintrag mit ID "1234" in "product.id&qu...
by columbo
07 Dec 2023, 14:51
Forum: Laravel package
Topic: Bulk text translation with DeepL?
Replies: 5
Views: 6049

Re: Bulk text translation with DeepL?

What would be the best way to create a script for the mass translation of product texts? Load the relevant texts from the DB table (SQL) -> call DeepL-API -> write translation to the DB? Which table should be considered? Is there another method or function of Aimeos that can be used? Thank you!
by columbo
27 Nov 2023, 21:55
Forum: Laravel package
Topic: How to set mail from-name?
Replies: 6
Views: 3368

Re: How to set mail from-name?

great - it works perfectly
thank you
by columbo
26 Nov 2023, 10:18
Forum: Laravel package
Topic: How to set mail from-name?
Replies: 6
Views: 3368

Re: How to set mail from-name?

ok - What is your suggestion to fix this? Copying, overwriting from() (/vendor/aimeos/ai-laravel/src/Base/Mail/Message) and adding MAIL_FROM_NAME works, but do you have a better suggestion? public function from( string $email, string $name = null ) : Iface { if( $email ) { //$this->message->from( $e...
by columbo
22 Nov 2023, 22:16
Forum: Laravel package
Topic: How to set mail from-name?
Replies: 6
Views: 3368

Re: How to set mail from-name?

I have double checked my settings and everything seems to be fine.
in .env MAIL_FROM_NAME='My company' is set, also in mail.php

FROM-NAME is still missing in payment mail source:
Screenshot 2023-11-22 230057.png
Screenshot 2023-11-22 230057.png (8.84 KiB) Viewed 3097 times
by columbo
20 Nov 2023, 21:46
Forum: Laravel package
Topic: How to display custom media in basket view?
Replies: 4
Views: 3776

Re: How to display custom media in basket view?

for the sake of completeness - there was a third mistake in return parameter: wrong: \Aimeos\MShop\Order\Item\Base\Product\Iface -> correct: \Aimeos\MShop\Order\Item\Product\Iface this code it is working fine: public function boot() { \Aimeos\MShop\Order\Item\Product\Standard::macro( 'copyFrom', fun...
by columbo
16 Nov 2023, 11:08
Forum: Laravel package
Topic: How to display custom media in basket view?
Replies: 4
Views: 3776

Re: How to display custom media in basket view?

as the file has changed with the new version 2023.10 I think copyFrom() in file /aimeos-core/src/MShop/Order/Item/Product/Standard.php is the right one. As suggested, I tried with macro in /app/ProvidersApp/ServiceProvider.php and changed the image form "default" to "custom" ... ...
by columbo
06 Nov 2023, 16:51
Forum: Laravel package
Topic: How to set mail from-name?
Replies: 6
Views: 3368

How to set mail from-name?

Hi, I'm trying to set the mail "from-name" eg. for the payment mail already set the correct name: 1. in .env MAIL_FROM_NAME 2. in config/mail.php: 'from' => [ 'name' => '...', ], 3. and in config/shop.php 'email' => [ 'from-name' => '...', ], but this had no effect - why? what is missing o...
by columbo
26 Oct 2023, 09:16
Forum: Laravel package
Topic: Bulk text translation with DeepL?
Replies: 5
Views: 6049

Bulk text translation with DeepL?

Hi, with "AI-based text translation" DeepL translation of single text elemets is possible. found here https://aimeos.org/tips/aimeos-2019-10-lts-release/ and https://aimeos.org/docs/2023.x/config/admin-jqadm/api/#translate Is there also an option to translate multipe text elements at once ...
by columbo
24 Oct 2023, 17:13
Forum: Laravel package
Topic: csv import: assign product to 1..n categories
Replies: 1
Views: 3009

csv import: assign product to 1..n categories

Hi, a product should be listed in one or multiple (sub-)categories. The number of (sub-)categories is not defined yet -> listing a product in 1, 2 or n subcategories. According to https://aimeos.org/docs/2023.x/cronjobs/product-csv-import/ we have to define 1..n 'catalog.code' mappings in shop.php -...