Search found 23 matches
- 12 Sep 2023, 12:07
- Forum: Laravel package
- Topic: ai-admin-jqadm js files
- Replies: 1
- Views: 12307
ai-admin-jqadm js files
2022.10 branch.
Hello!I can't find any information about how to replace js files from "ai-admin-jqadm/js" folder (order.js file, for example)
I tried place it to "vendor/my_ext/src/Admin/JQAdm/js" direction. It doesn't work.
Hello!I can't find any information about how to replace js files from "ai-admin-jqadm/js" folder (order.js file, for example)
I tried place it to "vendor/my_ext/src/Admin/JQAdm/js" direction. It doesn't work.
- 07 Jul 2023, 08:21
- Forum: Laravel package
- Topic: CMS (Grapes JS) plugins
- Replies: 3
- Views: 8658
Re: CMS (Grapes JS) plugins
Check the GrapesJS documentation. The custom GrapesJS setup is located here and you can add custom code in the themes/admin/jqadm/custom.js of your own project-specific Aimeos extension:
https://github.com/aimeos/ai-cms-grapesjs/blob/master/themes/admin/jqadm/custom.js
Yes I did it in custom ...
- 07 Jul 2023, 06:18
- Forum: Laravel package
- Topic: CMS cache
- Replies: 3
- Views: 7400
Re: CMS cache
Yes I did.kdim95 wrote: 04 Jul 2023, 13:03 Did you update the CMS page in your admin and upload a new media to replace the old media with in the editor?
Are you sure it's not browser cache, try to open the page in incognito?
Creating new database solve this problem.
- 07 Jul 2023, 06:17
- Forum: Laravel package
- Topic: CMS (Grapes JS) plugins
- Replies: 3
- Views: 8658
CMS (Grapes JS) plugins
2022.10 branch.
Hello!
How can I add or enable image-editor plugin to GrapesJS?
Hello!
How can I add or enable image-editor plugin to GrapesJS?
- 04 Jul 2023, 13:26
- Forum: Laravel package
- Topic: CMS (Grapes JS)
- Replies: 2
- Views: 6930
Re: CMS (Grapes JS)
It seems to me like the file drag option (gjs-am-file-uploader class selector) has just been hidden.
It doesn't seem to be supported, because they want to work with the "Media" items in Aimeos.
You would have to implement the logic for uploading images through the drag feature yourself, or just ...
- 04 Jul 2023, 07:07
- Forum: Laravel package
- Topic: CMS cache
- Replies: 3
- Views: 7400
CMS cache
Hello!
Sorry fow bother You with another problem!
After creation of new cms items I faced this error:
GET http://devshop.tatmedia.ru/images/uploads/1.d/preview/6/3/63730be9_dmzdpz5wkaazh0y.webp?v=20221227084033 404 (Not Found)
This is an old image. It seems that old cms page cached somwhere ...
Sorry fow bother You with another problem!
After creation of new cms items I faced this error:
GET http://devshop.tatmedia.ru/images/uploads/1.d/preview/6/3/63730be9_dmzdpz5wkaazh0y.webp?v=20221227084033 404 (Not Found)
This is an old image. It seems that old cms page cached somwhere ...
- 03 Jul 2023, 10:28
- Forum: Laravel package
- Topic: CMS (Grapes JS)
- Replies: 2
- Views: 6930
CMS (Grapes JS)
2022.10 branch.
Hello!
I can't find how to enable drag and drop feature of GrapesJs cms.
I tried like this, but it doesn'work:
assetManager: {
assets: [],
noAssets: '',
stylePrefix: 'am-',
upload: '',
uploadName: 'files',
headers: {},
params: {},
credentials: 'include',
multiUpload ...
Hello!
I can't find how to enable drag and drop feature of GrapesJs cms.
I tried like this, but it doesn'work:
assetManager: {
assets: [],
noAssets: '',
stylePrefix: 'am-',
upload: '',
uploadName: 'files',
headers: {},
params: {},
credentials: 'include',
multiUpload ...
- 15 Jun 2023, 11:33
- Forum: Laravel package
- Topic: Install tasks
- Replies: 1
- Views: 5461
Install tasks
Hello!
I want to override aimeos install tasks via creating "/setup" folder with my own tasks in my aimeos-laravel extension. But it doesn't work.
Then I did it via ExtensionServiceProvider and it works:
$this->publishes([
__DIR__ . '/setup' => base_path() . '/vendor/aimeos/aimeos-core/setup ...
I want to override aimeos install tasks via creating "/setup" folder with my own tasks in my aimeos-laravel extension. But it doesn't work.
Then I did it via ExtensionServiceProvider and it works:
$this->publishes([
__DIR__ . '/setup' => base_path() . '/vendor/aimeos/aimeos-core/setup ...
- 11 May 2023, 10:21
- Forum: Laravel package
- Topic: Locale select
- Replies: 8
- Views: 13491
Re: Locale select
Thank You a lot.! I'll try it.aimeos wrote: 11 May 2023, 06:59 There can be route conflicts with the auth routes. Can you please post the output of "composer show"?
A possible solution is to add a prefix like "auth" to all authentication routes so they are not matched by any other routes.
- 10 May 2023, 05:55
- Forum: Laravel package
- Topic: Locale select
- Replies: 8
- Views: 13491
Re: Locale select
The reason are your two custom routes you've added to the routes/web.php. They simply don't work because the first won't have any locale and the admin login requires a locale that's not there. If you remove that custom routes again, it should work as expected.
I removed all custom code from ...