cancel
Showing results for 
Search instead for 
Did you mean: 

Theme not showing

Theme not showing

Hi, I am new on Magento I am facing some issues while changing the theme, the theme is active on the back-end but not visible on front-end.

7 REPLIES 7

Re: Theme not showing

Hello @viable _india

 

check the theme type is not virtual.

 

check theme table, make sure type is 0 of your theme.

 

If works then mark as solution.


Problem solved? Click Kudos & Accept as Solution!
Sunil Patel
Magento 2 Certified Professional Developer & Frontend Developer

Re: Theme not showing

Hi @viable _india

 

Yes , its happen sometimes , theme type parameter gets converted into Virtual theme while doing activate and in activate theme.

 

So in your database find the table called - theme

 

in that table there is column called type - make sure its value is 0  ,if its value is 1 then it is virtual and it will not show at frontend 

 

so amend that and it will works !

 

if issue solved,Click Kudos & Accept as Solution

Re: Theme not showing

Thanks for replying, but the value there is already zero.

Re: Theme not showing

Hi @viable _india

 

After changing theme , have you run below commands : ?

 

php bin/magento setup:static-content:deploy -f
php bin/magento cache:clean
php bin/magento cache:flush

 

Could you please confirm ? 

 

if issue solved,Click Kudos & Accept as Solution

Re: Theme not showing

I am completely new and non-technical please tell me where to run the above command  

Re: Theme not showing

You need to run a command from your magento instance root,

if your project kept at a server in a public_html folder,

You need to go to public_html path using SSH and run below command,

Run below command,

php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy -f
php bin/magento setup:di:compile
php bin/magento indexer:reindex
php bin/magento cache:flush

 

 

If Issue Solved, Click Kudos/Accept As solutions. Get Magento insight from
Magento 2 Blogs/Tutorial

Re: Theme not showing

Hi @viable _india

 

Okay i understand your concern !

 

you need to open your SSH terminal and run above mention command and then check !

 

It will works for you !

if issue solved,Click Kudos & Accept as Solution