Search found 7893 matches

by aimeos
22 Mar 2020, 10:53
Forum: TYPO3 extension
Topic: Separate mails for shop owner and customer - no bcc
Replies: 45
Views: 18429

Re: Separate mails for shop owner and customer - no bcc

Stack your decorator on top of the delivery service provider, not the payment service provider. For using templates, you can have a look at the XML deliver service provider as reference: https://github.com/aimeos/aimeos-core/blob/2019.10/lib/mshoplib/src/MShop/Service/Provider/Delivery/Xml.php You c...
by aimeos
22 Mar 2020, 09:21
Forum: Laravel package
Topic: Shipping prices not showing
Replies: 5
Views: 1960

Re: Shipping prices not showing

You only use USD as currency? Is this also the standard currency in your frontend and is there a locale entry for this site/lang/currency combination: default/en/USD?

Can you confirm that it's working if you set up Aimeos from scratch?
by aimeos
19 Mar 2020, 17:28
Forum: Laravel package
Topic: Shipping prices not showing
Replies: 5
Views: 1960

Re: Shipping prices not showing

Can you please post the output of

Code: Select all

composer show
to see what versions you have installed?
by aimeos
18 Mar 2020, 15:47
Forum: Help
Topic: JSONADM API and rebuild index
Replies: 4
Views: 1934

Re: JSONADM API and rebuild index

Fixed a few things in your code and extended the tests:
https://github.com/aimeos/ai-admin-json ... #L438-L445

Now, PATCH and POST will update the index but still does not DELETE.
by aimeos
18 Mar 2020, 09:53
Forum: Help
Topic: JSONADM API and rebuild index
Replies: 4
Views: 1934

Re: JSONADM API and rebuild index

There's no way to rebuild the index using the JsonAdm API because it's a potentially long running operation that takes much longer than the request is allowed to. It's also not possible to execute the cronjob from the API. The only possibility might be to create a job in the message queue and a corr...
by aimeos
18 Mar 2020, 08:47
Forum: Laravel package
Topic: Add column to mshop_order_base
Replies: 8
Views: 3056

Re: Add column to mshop_order_base

Sorry, was looking at the wrong place.

We've made a change so decorators are now passed down to submanagers.
Can you update and confirm that it's working now?

Code: Select all

composer req aimeos/aimeos-core:2019.10.x-dev
by aimeos
17 Mar 2020, 08:28
Forum: Laravel package
Topic: Create new mshop table ?
Replies: 2
Views: 1294

Re: Create new mshop table ?

The setup files are used by this setup task:
https://github.com/aimeos/aimeos-core/b ... eMShop.php

You should create your own setup task that extends from this task and overwrites the migrate() method.
by aimeos
17 Mar 2020, 08:16
Forum: Laravel package
Topic: Language switching in product detail issue
Replies: 12
Views: 3987

Re: Language switching in product detail issue

If you add {locale} to your routes, your URLs will be:
- http://blackpage.be/en/shop/
- http://blackpage.be/fr/shop/

Did you have two entries in the Locale tab? You need these site/locale/currency combinations:
- default/fr/EUR
- default/en/EUR
by aimeos
16 Mar 2020, 14:19
Forum: Laravel package
Topic: Add column to mshop_order_base
Replies: 8
Views: 3056

Re: Add column to mshop_order_base

You haven't configured any decorator for the order base manager, only for the order base product manager according to your posted configuration. Thus, the array for the custom save attribute is empty.
by aimeos
16 Mar 2020, 14:05
Forum: Laravel package
Topic: Language switching in product detail issue
Replies: 12
Views: 3987

Re: Language switching in product detail issue

We've tried now several times to reproduce your behavior with several versions but are unable to get your result. If we add the locale selector like this: 'routes' => [ 'account' => ['prefix' => '{locale}/myaccount', 'middleware' => ['web', 'auth']], 'default' => ['prefix' => '{locale}/shop', 'middl...