Search found 8147 matches
- 18 Sep 2024, 11:47
- Forum: Laravel package
- Topic: new "save basket as template" feature
- Replies: 3
- Views: 644
Re: new "save basket as template" feature
Create an empty basket/order using:
Code: Select all
\Aimeos\MShop::create( $context, 'order' )->create()
- 18 Sep 2024, 11:46
- Forum: Laravel package
- Topic: custom login page like aimeos.com/profile (/admin, /login, /profile)
- Replies: 5
- Views: 4041
Re: custom login page like aimeos.com/profile (/admin, /login, /profile)
That' difficult because the Aimeos components are not added by the Laravel login page controller/action
- 16 Sep 2024, 13:02
- Forum: Help
- Topic: How to sort event products by start date in the frontend?
- Replies: 5
- Views: 5283
Re: How to sort event products by start date in the frontend?
Thanks a lot, they are merged now
- 12 Sep 2024, 10:27
- Forum: Help
- Topic: How to increase the displayed products in admin?
- Replies: 1
- Views: 421
Re: How to increase the displayed products in admin?
It simply doesn't make sense to show more products because nobody will step to more than 400 pages. Use the filter to search for the products instead. The maximum number of products shown in the backend is limited to 10,000 because counting all items can take a long time. If you have 1 million produ...
- 11 Sep 2024, 08:19
- Forum: Help
- Topic: customer is empty
- Replies: 3
- Views: 202
Re: customer is empty
It depends a bit on the API you are using (React, Apollo, fetch, etc.) but cross-origin request require some special settings:
https://developer.mozilla.org/en-US/doc ... n_requests
https://developer.mozilla.org/en-US/doc ... n_requests
- 10 Sep 2024, 16:09
- Forum: Laravel package
- Topic: how to get the complete structure of JSONAPI
- Replies: 3
- Views: 513
Re: how to get the complete structure of JSONAPI
The relationship part is always like: "relationships": { "catalog": { "links": { "self": "/jsonapi/catalog/{id}/relationships/catalog", "related": "/jsonapi/catalog/{id}/catalog" }, "data": { "type": "cata...
- 10 Sep 2024, 08:18
- Forum: Laravel package
- Topic: Content languages in CMS pages are not working for multiligual shop.
- Replies: 2
- Views: 194
Re: Content languages in CMS pages are not working for multiligual shop.
Sorry, the documentation wasn't up to date, the parameter name must be "path", not "cmspath". This is fixed now in the README: https://github.com/aimeos/ai-cms-grapes ... er#laravel
- 10 Sep 2024, 08:01
- Forum: Help
- Topic: customer is empty
- Replies: 3
- Views: 202
Re: customer is empty
Make sure the Laravel session cookie is sent with each request and the settings are correct if you send it from a different domain.
- 10 Sep 2024, 07:59
- Forum: Laravel package
- Topic: how to get the complete structure of JSONAPI
- Replies: 3
- Views: 513
Re: how to get the complete structure of JSONAPI
Please have a look at the field configuration of the manager implementation to see all available fields and their types, e.g. for the attribute manager: https://github.com/aimeos/aimeos-core/b ... #L139-L211
- 09 Sep 2024, 07:39
- Forum: Help
- Topic: Issue at multi site's creation
- Replies: 3
- Views: 399
Re: Issue at multi site's creation
If you run "php artisan aimeos:setup --option=setup/default/demo:1 aimeos1.selldesk.in", than the home page of aimeos1.selldesk.in contains the same data as the default home page but it's just a copy. Change the content of the aimeos1.selldesk.in home page to see if there are any changes.