Search found 32 matches

by jafo66
19 May 2024, 18:38
Forum: Laravel package
Topic: Utilizing Vue2 Libraries in the Admin
Replies: 5
Views: 4123

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: 5
Views: 4123

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: 0
Views: 382

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: 5
Views: 4123

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: 5
Views: 4123

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: 2474

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: 7691

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: 20290

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.
by jafo66
24 Apr 2024, 18:32
Forum: Laravel package
Topic: Unable to query customers filtering for status
Replies: 2
Views: 20290

Unable to query customers filtering for status

When querying for "active" customers, I'm unable to use a filter for status. I'm able to filter in other ways without an issue. Thanks! $userManager = MShop::create( $this->context(), 'customer' ); $search = $userManager->filter(true); $search->slice(0, 10000); $search->add('status', '==',...
by jafo66
24 Apr 2024, 02:53
Forum: Laravel package
Topic: Admin Vue Components
Replies: 2
Views: 21109

Re: Admin Vue Components

Should I be using this: https://aimeos.org/docs/latest/admin/jqadm/customize/

If so, how do I include all .js files in a directory?