Jump to content

How to remove "Popular" from shop's home page?


Recommended Posts

Seriously... days later and no one can answer?? This is killing me! I have tried looking in all the forums, tried to set within the global.css file the following:

 

#homefeatured {
    visibility: hidden;
}

 

I can't find the data files where this information is stored anywhere. Why is this so hard?? The back end of PrestaShop is a horror!

Link to comment
Share on other sites

If you want to change the text Popular to lets say Featured go to themes/default-bootstrap/modules/homefeatured and edit Tab.tpl

 

change this:

<li{if $active_li == 1} class="active"{/if}><a data-toggle="tab" href="#homefeatured" class="homefeatured">{l s='Popular' mod='homefeatured'}</a></li>

 

To this:

<li{if $active_li == 1} class="active"{/if}><a data-toggle="tab" href="#homefeatured" class="homefeatured">{l s='Featured' mod='homefeatured'}</a></li>

 

or you could just remove the text here as well

<li{if $active_li == 1} class="active"{/if}><a data-toggle="tab" href="#homefeatured" class="homefeatured">{l s='' mod='homefeatured'}</a></li>

 

 

 

After making any changes to .tpl files be sure and turn force compile on and cache off then refresh the page.

  • Like 1
Link to comment
Share on other sites

  • 5 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...