Search found 8062 matches

by aimeos
11 Jul 2024, 07:27
Forum: Laravel package
Topic: Altering how the basket looks
Replies: 3
Views: 14857

Re: Altering how the basket looks

That's correct. The templates for the e-mails are available here:
https://github.com/aimeos/ai-controller ... rder/email
by aimeos
08 Jul 2024, 14:08
Forum: Help
Topic: How can I insert an image in the admin panel using the CKEditor 5 editor
Replies: 1
Views: 9409

Re: How can I insert an image in the admin panel using the CKEditor 5 editor

We don't support images in texts by default because it leads to a lot of problems managing those data and unstructured data isn't suited for the JSON:API at all. We recommend to upload the image in the "Media" tab and decide in the frontend template where to render the texts/images and how.
by aimeos
08 Jul 2024, 09:06
Forum: Laravel package
Topic: Only show PostPay to certain customers
Replies: 2
Views: 13088

Re: Only show PostPay to certain customers

Using the customer/group extension from the Aimeos company you can achieve that easily:
https://aimeos.com/extensions#c437
by aimeos
08 Jul 2024, 09:03
Forum: Laravel package
Topic: Altering how the basket looks
Replies: 3
Views: 14857

Re: Altering how the basket looks

You may just need to adatpt the template if you have the data already available: https://github.com/aimeos/ai-client-html/blob/master/templates/client/html/common/summary/detail.php If you need more information, try to hand them over from the detail view into the basket by storing them as custom or ...
by aimeos
08 Jul 2024, 08:58
Forum: Help
Topic: How to Restore Guest Basket After User Login in Aimeos
Replies: 3
Views: 17040

Re: How to Restore Guest Basket After User Login in Aimeos

Where did you remove that line? It may cause a security issue but not sure.
by aimeos
04 Jul 2024, 09:44
Forum: Help
Topic: Aimeos Create an new extension and Api in it.
Replies: 25
Views: 89963

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

If you copy the existing theme into a new directory besides, you can create a new theme that will be published to ./public/vendor/shop/themes/
by aimeos
04 Jul 2024, 09:30
Forum: Laravel package
Topic: Text type translations
Replies: 1
Views: 11056

Re: Text type translations

For all types, translations can be already added in the type panels. Unfortunately, they are not used in the drop-downs of the admin backend before the new 2024.07 release.
by aimeos
04 Jul 2024, 08:13
Forum: Help
Topic: Add new query from Aimeos GraphQL
Replies: 2
Views: 14160

Re: Add new query from Aimeos GraphQL

To create GraphQL queries and and mutations for your new data domain automatically, add the domain name in ./config/admin.php of your own extension: return [ 'graphql' => [ 'domains' => [ 'mydomain' => 'mydomain' ] ] ]; See: https://github.com/aimeos/ai-admin-graphql/blob/master/config/admin.php
by aimeos
02 Jul 2024, 08:13
Forum: Laravel package
Topic: Admin List pages - change default number of results
Replies: 3
Views: 20350

Re: Admin List pages - change default number of results

Yes, no problem if you can create a PR for that :-)