Search found 34 matches

by jafo66
22 May 2024, 18:30
Forum: Laravel package
Topic: Upgrade Issues
Replies: 3
Views: 1683

Re: Upgrade Issues

I have checked it to ensure it is still correct and have tried other variations. I'm not seeing the CSS coming in from the server even after doing a clear of cache and reload.
by jafo66
21 May 2024, 15:29
Forum: Laravel package
Topic: Upgrade Issues
Replies: 3
Views: 1683

Re: Upgrade Issues

It looks like the custom.css from my extension isn't being loaded. Is there a change after the upgrade that I need to implement?
by jafo66
19 May 2024, 18:38
Forum: Laravel package
Topic: Utilizing Vue2 Libraries in the Admin
Replies: 6
Views: 7853

Re: Utilizing Vue2 Libraries in the Admin

After doing some investigation, it looks like the “vue” class isn’t creating an instance of Vue, which means my existing Vue components are not rendered. Any thoughts on why that might be happening?
by jafo66
18 May 2024, 15:45
Forum: Laravel package
Topic: Utilizing Vue2 Libraries in the Admin
Replies: 6
Views: 7853

Re: Utilizing Vue2 Libraries in the Admin

I've completed an upgrade and installed Vuetify via NPM. My questions from your post below:
  • Where do I implement / override the lib.js?
  • Do I need to add "your own JS file" to the manifest as before?
Thanks!
by jafo66
18 May 2024, 15:40
Forum: Laravel package
Topic: Upgrade Issues
Replies: 3
Views: 1683

Upgrade Issues

In doing the upgrade from 2023.10 to 2024.04, my admin menu icons broke. I had them in my extension in the custom.css file (and they were working). Previous css: .aimeos .sidebar-menu li .tree-menu .menuitem-geolocation i.icon:before { content: url("/images/geolocation.svg"); } Any idea wh...
by jafo66
16 May 2024, 02:23
Forum: Laravel package
Topic: Utilizing Vue2 Libraries in the Admin
Replies: 6
Views: 7853

Re: Utilizing Vue2 Libraries in the Admin

Does that mean that the latest 2024 release is now on Vue3?
by jafo66
14 May 2024, 21:20
Forum: Laravel package
Topic: Utilizing Vue2 Libraries in the Admin
Replies: 6
Views: 7853

Utilizing Vue2 Libraries in the Admin

I'm wondering if there is a proper way to overload / enhance the admin.js file. I'm looking to include Vuetify (version meant for Vue2) and the only way I could find to properly getting working is to add this to the admin.js file: vue(node) { return new Vue({ el: node, vuetify: new Vuetify(), Is the...
by jafo66
14 May 2024, 21:17
Forum: Laravel package
Topic: Change the order of subparts
Replies: 1
Views: 3980

Change the order of subparts

I've added a subpart to the products, but I was wondering if there was a way to have it ordered (similar to the menu does) where it shows up higher in the list of subparts?

Thanks!
by jafo66
29 Apr 2024, 17:58
Forum: Laravel package
Topic: airoute not producing https links
Replies: 1
Views: 11945

airoute not producing https links

In deploying my app into a docker container, I have it exposed on port 443 with a valid certificate. The site won't work because it seems to be responding with URLs as http://<server_name> instead of https://<server_name>. Meaning, I get HTML returned the browser is blocking the non-secured links wh...
by jafo66
25 Apr 2024, 04:57
Forum: Laravel package
Topic: Unable to query customers filtering for status
Replies: 2
Views: 22954

Re: Unable to query customers filtering for status

Please disregard... I forgot to make it 'customer.status' instead of 'status'. Its what I get for looking at the DB and not the MShop files.