cancel
Showing results for 
Search instead for 
Did you mean: 

Can I customize current theme to child theme for different store view ?

Can I customize current theme to child theme for different store view ?

hi guys , i have two different store views.Am using a sm  theme for one store view  and i just want to use different theme for another store view by making some modifications to current theme.

 

i want to know is this possible ? if possible plzz guide me ?

2 REPLIES 2

Re: Can I customize current theme to child theme for different store view ?

Hello @bharath553

 

Yes, you should create a new theme under app/design/frontend/mytheme. Its parent is your current custom theme. For example:

    You create Theme A1 for store A
    And then create Theme B1 for store B. Its parent theme is Theme A1.

Now, in Theme B1, you can create the new layout and style for catalog product page on store B:

app/design/frontend/mytheme/B1/Magento_Catalog/templates/product/list.phtml

 

 

if issue solved,Click Kudos & Accept as Solution

Re: Can I customize current theme to child theme for different store view ?

Hi @bharath553

 

Yes it is possible to have different theme for different store.

 

Copy the theme which you have already created and paste again in the app/design directory and rename the theme directory and the changes you wanted to make in css file.

 

Now go to the Content -> Design -> configuration -> Over there you will see all the stores and the websites you have created -> just select your second theme for second store

 

Click on save button.

 

Run below commands :

 

php bin/magento indexer:reindex
php bin/magento cache:clean
php bin/magento cache:flush

Then check it will works !

 

 

if issue solved,Click Kudos & Accept as Solution