Theme Help

How to configure and adapt Aimeos based shops as developer
Forum rules
Always add your Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Alex Kantanda
Posts: 4
Joined: 04 Dec 2020, 04:49

Theme Help

Post by Alex Kantanda » 04 Dec 2020, 11:04

Hello!

------------------------------------------------------
Create theme extension
To create a portable theme, you should generate an extension for your theme first using the Aimeos extension generator. Copy it to the ./ext/ directory of your application where also the other Aimeos extensions are located. You should also put that extension under version control, e.g. by adding it to a Git repository.

In your extension, create a new theme directory ./client/html/themes/<themename>/. Replace <themename> with an unique name for your theme.
--------------------------------------------------------
I have made my theme extension following this guide.
Afterwards, I run "composer update".

I know that my extension theme is copied public/package/aimeos/shop/themes/ when run composer update.
but not copied as shown in picture.
Please help me, thanks.
Attachments
Screenshot_2.png
Screenshot_2.png (15.04 KiB) Viewed 818 times

User avatar
aimeos
Administrator
Posts: 7903
Joined: 01 Jan 1970, 00:00

Re: Theme Help

Post by aimeos » 06 Dec 2020, 17:55

In Laravel, your theme from your extension is only copied to the Laravel ./public/ directory if you execute:

Code: Select all

php artisan vendor:publish --all
This is done once at installation but need to be executed manually if you install a theme afterwards.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

Post Reply