Search found 125 matches

by columbo
30 Jan 2024, 13:49
Forum: Laravel package
Topic: Same basket for different languages
Replies: 9
Views: 47452

Re: Same basket for different languages

added a protocol / log output, it seems like ai-controller-frontend/src/Controller/Frontend/Basket/Base.php is not executed at all FYI: the same behavior also applies to Aimeos Demo shop on https://laravel.demo.aimeos.org 1. add item to cart 2. change language -> cart empty 3. change language back -...
by columbo
29 Jan 2024, 13:01
Forum: Laravel package
Topic: Substring productsearch (PostgreSQL)
Replies: 3
Views: 6955

Re: Substring productsearch (PostgreSQL)

Thank you, but still one question. given following available products name: "foobarbaz abc 2kg" "foobarbaz abc 5kg" "foobarbaz abc 9kg" when using "Standard index manager" and searching for " bar ", result: "foo bar baz 2kg" "foo bar b...
by columbo
25 Jan 2024, 11:03
Forum: Laravel package
Topic: Same basket for different languages
Replies: 9
Views: 47452

Same basket for different languages

Hi, start: current local / language setting: DE user adds item to basket, eg. 4 items customer changes local / language to: EN -> basket empty, 0 items switch back to DE: basket has 4 items again -> The basket items are saved according to the language/local setting. How / where can we make the baske...
by columbo
22 Jan 2024, 12:16
Forum: Laravel package
Topic: Substring productsearch (PostgreSQL)
Replies: 3
Views: 6955

Substring productsearch (PostgreSQL)

Hi, given a searchterm like: "bar" -> product with names like "foo bar baz" are found But products with seachterm as part of a word (substring) are not found: " bar foobaz" "foo bar baz" How / where can we customize the search / SQL behaviour especially for Po...
by columbo
19 Jan 2024, 07:45
Forum: Laravel package
Topic: How to display default attributes in basket, checkout?
Replies: 3
Views: 4829

Re: How to display default attributes in basket, checkout?

We would like to make the "selling unit" attribute visible in the basket (checkout, history) and in the payment mail. Using the "hidden" attribute would be a bit misleading (but of course possible as a workaround). Did I understand correctly, that the "default attribute"...
by columbo
19 Jan 2024, 07:10
Forum: Laravel package
Topic: Payment mail to multiple BCC recipients
Replies: 2
Views: 3804

Re: Payment mail to multiple BCC recipients

Great, now it's working
thank you!
by columbo
16 Jan 2024, 11:10
Forum: Laravel package
Topic: How to display default attributes in basket, checkout?
Replies: 3
Views: 4829

How to display default attributes in basket, checkout?

Hi, we use default- and select- products for our catalog; all (default and select) products have attributes like "selling unit" for select products "selling unit" is stored as variant attribute for default products it is stored as default attribute attribute "selling unit&qu...
by columbo
15 Jan 2024, 14:00
Forum: Laravel package
Topic: Payment mail to multiple BCC recipients
Replies: 2
Views: 3804

Payment mail to multiple BCC recipients

Hi, how can we add multiple bcc addresses to payment mail? According to https://aimeos.org/docs/2023.x/config/controller-jobs/order-email/#bcc-email_1 it should work with an list of email addresses tried this: controller/jobs/order/email/payment/bcc-email = ['mail1@mail.com', 'mail2@mail.com', 'mail...
by columbo
18 Dec 2023, 07:53
Forum: Laravel package
Topic: Bulk text translation with DeepL?
Replies: 5
Views: 6052

Re: Bulk text translation with DeepL?

Hi, I'm trying to translate all product texts with type = 'name' from DE to EN and ES via DeepL API. Selecting the 'name' texts and calling the API works $productManager = \Aimeos\MShop::create( $this->context(), 'product' ); $filter = $productManager->filter(); $cursor = $productManager->cursor( $f...
by columbo
11 Dec 2023, 17:16
Forum: Laravel package
Topic: add from order-history with deactivated products -> error
Replies: 3
Views: 2113

Re: add from order-history with deactivated products -> error

tried to create a PR but not sure if done right. addProducts() function with try/catch: protected function addProducts( \Aimeos\Base\View\Iface $view ) { $context = $this->context(); $domains = ['attribute', 'catalog', 'media', 'price', 'product', 'text', 'locale/site']; $basketCntl = \Aimeos\Contro...