Search found 7918 matches

by aimeos
27 Mar 2020, 16:55
Forum: Help
Topic: JSONADM combine filter
Replies: 1
Views: 983

Re: JSONADM combine filter

Between "&&" and "==" must be "[]" so an array is created:
http://aimeos.test:8888/admin/default/j ... .status]=1
by aimeos
25 Mar 2020, 10:17
Forum: TYPO3 extension
Topic: Data:image base 64
Replies: 1
Views: 1157

Re: Data:image base 64

Currently not in the admin interface. It would be possible to add a field to enter the URL manually.
by aimeos
25 Mar 2020, 10:15
Forum: Laravel package
Topic: First page template
Replies: 3
Views: 1484

Re: First page template

You can disable Aimeos content caching for development:
https://github.com/aimeos/aimeos-laravel#hints
by aimeos
24 Mar 2020, 11:46
Forum: TYPO3 extension
Topic: Separate mails for shop owner and customer - no bcc
Replies: 45
Views: 18677

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

Decorators are stacked from left to right, so the right-most is on top.
If you don't overwrite the isAvailable() method, the result from the next decorator is passed back:
https://github.com/aimeos/aimeos-core/b ... e.php#L140
by aimeos
22 Mar 2020, 10:54
Forum: Help
Topic: How do I set up dropshipping
Replies: 1
Views: 1737

Re: How do I set up dropshipping

You should implement a delivery service provider that sends the orders to your manufacturer:
https://aimeos.org/docs/Developers/Library/Service
by aimeos
22 Mar 2020, 10:53
Forum: TYPO3 extension
Topic: Separate mails for shop owner and customer - no bcc
Replies: 45
Views: 18677

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: 2005

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: 2005

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: 1969

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: 1969

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