Search found 8062 matches

by aimeos
20 Jun 2024, 06:55
Forum: Laravel package
Topic: How to: secure Aimeos-Laravel BE?
Replies: 2
Views: 22484

Re: How to: secure Aimeos-Laravel BE?

Laravel authentication is already securely designed so there's normally no need to improve that. If you are using Aimeos in very sensible environments, you can add 2FA in addition. There are tutorials for Laravel explaining how to add that.
by aimeos
19 Jun 2024, 17:42
Forum: Help
Topic: Custom Delivery Provider: Display List of Rates
Replies: 9
Views: 60056

Re: Custom Delivery Provider: Display List of Rates

Yes, if you return true/false in the isAvailable() method of the service provider. Only those for which true is returned are shown.
by aimeos
18 Jun 2024, 20:06
Forum: Help
Topic: Custom Delivery Provider: Display List of Rates
Replies: 9
Views: 60056

Re: Custom Delivery Provider: Display List of Rates

If you want to use several delivery options, you have to create them ahead of time but the price can be dynamic. If you want to have a totally dynamic selection, than the list entries you can create in getConfigFE() are better.
by aimeos
18 Jun 2024, 08:50
Forum: Help
Topic: Custom Delivery Provider: Display List of Rates
Replies: 9
Views: 60056

Re: Custom Delivery Provider: Display List of Rates

It's one option to return an entry in getConfigFE() with a "list" configuration but that has limitations displaying the price (you would have to do that in the label). Another option might be to return several delivery options, e.g. for standard or express delivery.
by aimeos
18 Jun 2024, 08:47
Forum: Laravel package
Topic: Basket data in Payment Provider
Replies: 8
Views: 66288

Re: Basket data in Payment Provider

Yes, please create a PR and we are happy to merge the change into the core. It will be part of the next minor release then.
by aimeos
18 Jun 2024, 08:46
Forum: Help
Topic: Aimeos Create an new extension and Api in it.
Replies: 25
Views: 90008

Re: Aimeos Create an new extension and Api in it.

Yes, you can adapt the existing Aimeos pages without problem, e.g. for the checkout page have a look here:
https://aimeos.org/docs/latest/frontend ... omponents/
by aimeos
18 Jun 2024, 08:45
Forum: Help
Topic: export products to csv
Replies: 1
Views: 18529

Re: export products to csv

There's no CSV exports for products because the file format isn't suitable to handle the complexity of the data structures.
by aimeos
18 Jun 2024, 08:44
Forum: Laravel package
Topic: Show different prices for customers of different membership
Replies: 11
Views: 121591

Re: Show different prices for customers of different membership

This line is added automatically when you create a new TYPO3 extension using the extension builder. Checked that again and it worked.
by aimeos
17 Jun 2024, 22:06
Forum: Laravel package
Topic: Export sitemap for each tennant separately
Replies: 2
Views: 23916

Re: Export sitemap for each tennant separately

You are right, that's a problem because the sitemaps are overwritten. Until it's fixed, you can extend the job controller and overwrite the "filename()" and "indexFilename()" methods here to include the site code: https://github.com/aimeos/ai-controller-jobs/blob/master/src/Contr...
by aimeos
17 Jun 2024, 21:57
Forum: Laravel package
Topic: jsonapi search by product properties
Replies: 1
Views: 19064

Re: jsonapi search by product properties

There's a "product:prop" search function available:

Code: Select all

 /jsonapi/product?filter[%3D%3D][product:prop("gtin",null,"7894326783")]=&include=product.property 
[/quote]
You can only search for exact values, not for strings inside.