Search found 8147 matches

by aimeos
04 Sep 2024, 10:27
Forum: Help
Topic: STRIPE SETUP
Replies: 6
Views: 830

Re: STRIPE SETUP

Did you set up the required cronjobs: https://aimeos.org/docs/latest/laravel/setup/#cronjobs
by aimeos
03 Sep 2024, 18:59
Forum: Help
Topic: STRIPE SETUP
Replies: 6
Views: 830

Re: STRIPE SETUP

Go the the Setup > Services panel in the admin backend, add a new service, choose "Payment" as type and "Stripe" as provider. Add the necessary configuration in the config table: - https://aimeos.org/docs/latest/manual/service-details/ - https://aimeos.org/docs/latest/manual/serv...
by aimeos
03 Sep 2024, 18:57
Forum: Help
Topic: Issue at multi site's creation
Replies: 3
Views: 409

Re: Issue at multi site's creation

In the backend, go to the Locale > Locale panel and add the language/currency combination that should be allowed for that site: https://aimeos.org/docs/latest/manual/locales/
by aimeos
01 Sep 2024, 21:47
Forum: Laravel package
Topic: new "save basket as template" feature
Replies: 4
Views: 691

Re: new "save basket as template" feature

With the current "save basket" feature, you can save multiple baskets as templates and add the products to the current basket (later) again. It's currently not possible to edit saved baskets, only to apply them to the current (empty) basket, save them again and delete the old basket. Editi...
by aimeos
31 Aug 2024, 15:45
Forum: Help
Topic: Grapesjs traits Not Displayed After Reloading Editor for Custom Component
Replies: 1
Views: 843

Re: Grapesjs traits Not Displayed After Reloading Editor for Custom Component

Can you please post a minimal code set which reproduces the problem and contains everything required so we can copy it to a test extension?
by aimeos
29 Aug 2024, 10:27
Forum: Laravel package
Topic: To Add a new field to order ,below the invoice number
Replies: 12
Views: 31565

Re: To Add a new field to order ,below the invoice number

You need to add a decorator to the customer address manager for the new fields in the customer address table:
https://aimeos.org/docs/latest/models/e ... /#easy-way
by aimeos
29 Aug 2024, 10:23
Forum: Help
Topic: how to remove delevery page from checkout process
Replies: 1
Views: 513

Re: how to remove delevery page from checkout process

Configure a one page checkout and hide the delivery section via CSS:
https://aimeos.org/docs/latest/frontend ... e-checkout
by aimeos
29 Aug 2024, 10:22
Forum: Help
Topic: How can I create a custom api for product detail?
Replies: 1
Views: 578

Re: How can I create a custom api for product detail?

The Laravel approach works but we don't recommend that way. You get all data you need from the existing Aimeos JSON:API and all transformations of the data for displaying it should be done in your JS frontend application.
by aimeos
28 Aug 2024, 06:31
Forum: Help
Topic: How to handle products with many sizes?
Replies: 7
Views: 1829

Re: How to handle products with many sizes?

You should add initial stock levels to avoid the selection product been shown as out of stock in the list views. The stock level of the selection product is updated automatically each time a variant has been ordered. That applies to the selected stock level type I think.
by aimeos
28 Aug 2024, 06:27
Forum: Laravel package
Topic: Login/Sign-up: Guest checkout without signup, Login with email ID/phone number via OTP, Login with Google & Facebook
Replies: 3
Views: 2277

Re: Login/Sign-up: Guest checkout without signup, Login with email ID/phone number via OTP, Login with Google & Facebook

Guest checkout is the standard way in Aimeos. At the end of the checkout process, either a new account for the customer is created (if they don't un-check the option in the summary page) or the order is assigned to the existing account based on the e-mail address of the customer.