Upgrade Issues
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
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:
Any idea why this is no longer working now?
Previous css:
Code: Select all
.aimeos .sidebar-menu li .tree-menu .menuitem-geolocation i.icon:before {
content: url("/images/geolocation.svg");
}
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?
Re: Upgrade Issues
Check if the CSS selector is still correct as there have been changes regarding the used CSS selectors.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, give us a star
If you like Aimeos, give us a star
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.
Re: Upgrade Issues
Most likely, you haven't upgraded your own extension. The file names in the manifest.jsb2 file must be like that now:
- https://github.com/aimeos/aimeos-core/b ... st.jsb2#L6
- https://github.com/aimeos/aimeos-core/b ... t.jsb2#L14
- https://github.com/aimeos/aimeos-core/b ... st.jsb2#L6
- https://github.com/aimeos/aimeos-core/b ... t.jsb2#L14
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, give us a star
If you like Aimeos, give us a star
Re: Upgrade Issues
This worked, but note I had to change the name from "extenstion-name.js" to "index-js" for it to work properly. That is because the index.blade.php is looking specifically for index-js name and no other names are considered for loading. Same is true for the index.css.