Search found 7894 matches

by aimeos
10 Feb 2021, 14:57
Forum: Help
Topic: CMS extension
Replies: 62
Views: 60558

Re: Setup new entity for jsonadm

IIRC, it's about returning an array instead of a single node here:
https://github.com/aimeos/ai-admin-jqad ... #L221-L225
by aimeos
10 Feb 2021, 12:44
Forum: Help
Topic: CMS extension
Replies: 62
Views: 60558

Re: Setup new entity for jsonadm

It's not so different from the catalog panel. We may have several page trees for different menus but one menu should have one root node even if you only render its children it in the frontend. The next step is that you set up the CMS panel exactly like the catalog panel so we have no cms list view a...
by aimeos
09 Feb 2021, 21:29
Forum: Help
Topic: CMS extension
Replies: 62
Views: 60558

Re: Setup new entity for jsonadm

Sorry, it must be:

Code: Select all

composer create-project aimeos/aimeos:dev-master aimeosdev
by aimeos
09 Feb 2021, 17:46
Forum: Laravel package
Topic: min value for basket
Replies: 1
Views: 663

Re: min value for basket

Use the BasketLimit plugin in the "Plugin" panel:
admin-plugin-basketlimit.png
admin-plugin-basketlimit.png (97.62 KiB) Viewed 658 times
by aimeos
09 Feb 2021, 17:42
Forum: Laravel package
Topic: Can I create multi stores with different themes?
Replies: 1
Views: 788

Re: Can I create multi stores with different themes?

There's no "official" support for a theme per site as it's not fully functional and not very conveniant yet. You can't assign a theme including CSS/JS files to a site yet because it's configurable but not per site: https://github.com/aimeos/aimeos-laravel/blob/master/src/views/base.blade.p...
by aimeos
09 Feb 2021, 17:35
Forum: Help
Topic: CMS extension
Replies: 62
Views: 60558

Re: Setup new entity for jsonadm

Done the same and it worked fine. Check if it's a password mismatch and try again with:

Code: Select all

php artisan aimeos:account --super me@localhost
by aimeos
09 Feb 2021, 16:08
Forum: Help
Topic: CMS extension
Replies: 62
Views: 60558

Re: Setup new entity for jsonadm

Like said, you need a setup using Aimeos dev-master for development because there have been some breaking changes in the Aimeos core in the current dev-master and aimeos/ai-cms-grapejs is compatible to Aimeos dev-master only at the moment. For a quick working setup, create a new Aimeos project for d...
by aimeos
09 Feb 2021, 15:49
Forum: Help
Topic: CMS extension
Replies: 62
Views: 60558

Re: Setup new entity for jsonadm

Use

Code: Select all

composer req aimeos/ai-cms-grapejs
or

Code: Select all

composer req aimeos/ai-cms-grapejs:dev-main
Github creates new repositories with "main" branch instead of "master".
by aimeos
09 Feb 2021, 15:29
Forum: Help
Topic: CMS extension
Replies: 62
Views: 60558

Re: Setup new entity for jsonadm

We committed all our pending changes and now it's in a first usable state (without the editor, which is still a dummy). The item view also contains already the tree view now. Please note, that it's currently working with Aimeos dev-master only due to several breaking changes in the core for 2021.x s...
by aimeos
08 Feb 2021, 18:38
Forum: Help
Topic: CMS extension
Replies: 62
Views: 60558

Re: Setup new entity for jsonadm

I think the mentioned package will be exactly what you need if you integrate your code for the page tree and we are happy to merge a PR from you :-) Then, you can use the page tree to build your menus and the editor to add the content to those pages. The text subpanel will contain the SEO relevant s...