Search found 14 matches

by cyberdev
09 Aug 2022, 17:02
Forum: Laravel package
Topic: Refused to load the script
Replies: 2
Views: 627

Re: Refused to load the script

you have to allow your script in csp
by cyberdev
14 Jun 2022, 12:48
Forum: Laravel package
Topic: How to use translate function in laravel blade?
Replies: 2
Views: 645

Re: How to use translate function in laravel blade?

Just use the aimeos helper function, its is explained in aimeos doc
https://aimeos.org/docs/latest/laravel/ ... -templates
by cyberdev
05 Jun 2022, 10:23
Forum: Laravel package
Topic: Override default aimeos-laravel base.blade.php
Replies: 2
Views: 579

Re: Override default aimeos-laravel base.blade.php

aimeos provides a fantastic infrastructure that you can override/ modify or customise everything 👏. base.blade is just a blade template and laravel theme extenstion have service provider that all you need for laravel service container.. in provider you can use you're own logic how to handel template...
by cyberdev
31 May 2022, 14:41
Forum: Laravel package
Topic: why aimeos doesn't save locale
Replies: 10
Views: 1771

Re: why aimeos doesn't save locale

because you didn't register any local in you're app.
https://github.com/aimeos/aimeos/blob/m ... Locale.php
by cyberdev
23 May 2022, 08:31
Forum: Laravel package
Topic: Custom theme not getting used
Replies: 4
Views: 1082

Re: Custom theme not getting used

The Laravel created extension does not create a cms-page.css or cms-page.js files. Had to manually copy them from the default. e.g if you want to override the cms client template then copy the file from ai-cms-grapesjs/templete/client/html/cms/page/.. to packages/themename/templetes/client/html/cms...
by cyberdev
22 May 2022, 15:47
Forum: Laravel package
Topic: Custom theme not getting used
Replies: 4
Views: 1082

Re: Custom theme not getting used

you are using wrong infrastructure ;) firstly download Laravel theme Extension instead of aimeos extenstion. https://aimeos.org/extensions And then put the extracted files in packages directory of the root.. https://aimeos.org/docs/latest/laravel/themes/ after use composer req aimeos-extenstion/them...
by cyberdev
19 May 2022, 14:09
Forum: Laravel package
Topic: Several theme loading views problem
Replies: 36
Views: 5895

Re: Several theme loading views problem

The correct config will be... 'template' => [ 'themename' => [ 'admin/jqadm/templates' => [ 'templates/admin/jqadm', ], 'admin/jsonadm/templates' => [ 'templates/admin/jsonadm', ], 'client/jsonapi/templates' => [ 'templates/client/jsonapi', ], 'client/html/templates' => [ 'templates/client/html', ],...
by cyberdev
12 May 2022, 18:52
Forum: Laravel package
Topic: Several theme loading views problem
Replies: 36
Views: 5895

Re: Several theme loading views problem

Firstly deb where your template load from on applying different theme extenstion 🥺 or change the basic.blade.php to Anonymous Blade Components as well all related view templates in your extenstion . the best to hear from aimeos.
by cyberdev
12 May 2022, 16:47
Forum: Laravel package
Topic: Several theme loading views problem
Replies: 36
Views: 5895

Re: Several theme loading views problem

Just now i checked aimeos app aimeos: dev-master+ aimeos:04.2022 installed more than 12 different theme extenstion for different side/code which using different layout even there own config.. and all working as to be, without clear cache or optimize something,may use artisan optimize:clear or delete...