Search found 208 matches

by kdim95
25 Oct 2022, 10:20
Forum: Laravel package
Topic: How to avoid having to use "composer update" when changing CSS and JS files in my theme extension?
Replies: 6
Views: 1129

Re: How to avoid having to use "composer update" when changing CSS and JS files in my theme extension?

I solved it by providing the full paths when linking: ln -s /var/www/vhosts/<domain>/httpdocs/packages/<extname>/themes/client/html/<extname> /var/www/vhosts/<domain>/httpdocs/public/vendor/shop/themes/<extname> And for removal of the link, the command is: unlink /var/www/vhosts/<domain>/httpdocs/pu...
by kdim95
25 Oct 2022, 10:01
Forum: Laravel package
Topic: How to avoid having to use "composer update" when changing CSS and JS files in my theme extension?
Replies: 6
Views: 1129

Re: How to avoid having to use "composer update" when changing CSS and JS files in my theme extension?

I tried the following links ls - s ./packages/<extname>/themes ./public/vendor/shop/themes/<extname> ln -s ./packages/<extname>/themes/client/html/<extname> ./public/vendor/shop/themes/<extname> it keeps looking for the files in ./public/vendor/shop/themes/<extname>
by kdim95
23 Oct 2022, 20:57
Forum: Laravel package
Topic: How to avoid having to use "composer update" when changing CSS and JS files in my theme extension?
Replies: 6
Views: 1129

How to avoid having to use "composer update" when changing CSS and JS files in my theme extension?

Laravel framework version: 9.36.4 Aimeos Laravel version: * 2022.07.2 PHP Version: 8.1.9 Environment: Linux I have created a theme extension and selected it. Every time I change a CSS or JS file in... vendor/aimeos-themes/mytheme/themes/client/html/mytheme/*.css The changes don't reflect on the fron...
by kdim95
23 Oct 2022, 20:08
Forum: Laravel package
Topic: Theme navigation duplicated after "composer upgrade"
Replies: 6
Views: 1120

Re: Theme navigation duplicated after "composer upgrade"

Bumping because the menu issue persists, not sure what's causing it.
by kdim95
20 Oct 2022, 11:23
Forum: Laravel package
Topic: Theme navigation duplicated after "composer upgrade"
Replies: 6
Views: 1120

Re: Theme navigation duplicated after "composer upgrade"

I have created a theme extension, but the issue persists when I switch to the new theme. Steps to reproduce: 1) Create a mytheme Laravel theme 2022.x extension here: https://aimeos.org/extensions 2) Upload the theme to packages/mytheme 3) Execute composer update 4) Switch to the new theme from the s...
by kdim95
20 Oct 2022, 08:12
Forum: Laravel package
Topic: Theme navigation duplicated after "composer upgrade"
Replies: 6
Views: 1120

Re: Theme navigation duplicated after "composer upgrade"

I think I wasn't changing the files in the ./vendor directory, but they somehow updated.
I could have touched a few lines and reverted the changes in the package, but that was just to make sure I was overriding the correct files in my extension. Could that have caused the package to update somehow?
by kdim95
19 Oct 2022, 23:35
Forum: Laravel package
Topic: Theme navigation duplicated after "composer upgrade"
Replies: 6
Views: 1120

Re: Theme navigation duplicated after "composer upgrade"

I fixed it by overwriting vendor/aimeos/ai-client-html with the one from my backup, I don't understand what went wrong here, but the issue seems to be fixed now.
by kdim95
19 Oct 2022, 08:31
Forum: Laravel package
Topic: Theme navigation duplicated after "composer upgrade"
Replies: 6
Views: 1120

Theme navigation duplicated after "composer upgrade"

Laravel framework version: 9.36.2 Aimeos Laravel version: * 2022.07.2 PHP Version: 8.1.9 Environment: Linux The main menu appears to be duplicated after executing the " composer upgrade " command. Before the issue appeared, I've been changing around some theme settings. I was attempting to...
by kdim95
18 Oct 2022, 08:14
Forum: Laravel package
Topic: Replace translation not working
Replies: 2
Views: 601

Re: Replace translation not working

Thank you, it works now