Lipsa
Lipsa

Reputation: 417

How to set different theme for different store in opencart in multistore installation?

I have installed multi-store in my open cart installation. I want to set different theme for my two different stores. I have copied the /catalog/view/theme/default folder and renamed it to mytheme. But still this mytheme is not added to store theme drop down option.

Can any one please explain, how it will possible ?

Upvotes: 0

Views: 3086

Answers (1)

DigitCart
DigitCart

Reputation: 3000

Default theme has these files in admin folder, you need to create these file for your new theme.

admin/controller/extension/theme/theme_default.php
admin/language/en-gb/extension/theme/theme_default.php
admin/view/template/extension/theme/theme_default.tpl

Don't forget to edit them and replace theme_default with mytheme, for example:

class ControllerExtensionThemeThemeDefault extends Controller {

edit it to:

class ControllerExtensionMytheme extends Controller {

After create above files go to Extensions/Extensions and select Themes from deopdown menu, here you must see your theme setting, now you can enable it. When you enable it, you can assign it to your store from system/settings

enter image description here

Upvotes: 1

Related Questions