baronesselsa Posted August 11, 2015 Share Posted August 11, 2015 I currently have started adding products to the "home" category, and they are showing up nicely on the first page. But I would like to remove the "POPULAR" title button that appears on the front page. Or at least to change this text to something else. Thanks! Link to comment Share on other sites More sharing options...
baronesselsa Posted August 13, 2015 Author Share Posted August 13, 2015 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 More sharing options...
prestandrew Posted August 13, 2015 Share Posted August 13, 2015 I was able to get rid of it by doing #home-page-tabs { display:none !important; } You should be able to put that in pretty much any CSS file. Link to comment Share on other sites More sharing options...
baronesselsa Posted August 17, 2015 Author Share Posted August 17, 2015 Thank you. I had finally figured it out. Though it seems your !important addition makes it work on Chrome as well, when just changing the visibility didn't work in Firefox. Link to comment Share on other sites More sharing options...
tdr170 Posted August 18, 2015 Share Posted August 18, 2015 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. 1 Link to comment Share on other sites More sharing options...
Barro Posted February 3, 2016 Share Posted February 3, 2016 Thanks.Muito Obrigado. Michael http://www.frangofritocariri.com.br Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now