Khaito Posted July 10, 2021 Share Posted July 10, 2021 Hi, I'm trying to hide product listings from my category pages. I want to make my own custom category page, and I don't want to use default theme for that. Right now I managed to remove title and left column bar, but I can't find any place in BO, positions or anywhere, to edit category page content. I want to get rid of this section, marked red circle: Link to comment Share on other sites More sharing options...
Sycomor Posted July 13, 2021 Share Posted July 13, 2021 Hello, i'm looking for this option too if someone has the answer, would be great. thanks Link to comment Share on other sites More sharing options...
PrestaServicePro Posted July 13, 2021 Share Posted July 13, 2021 Hello, Check tpl which named category inside theme. You will see like a include('product.tpl') then comment it and check again. Link to comment Share on other sites More sharing options...
Sycomor Posted July 13, 2021 Share Posted July 13, 2021 Hello thanks for your answer @PrestaServicePro i guess this will hide on all categories (good for @Khaito ) i would like to hide only on specific categories. if you have any ideas, would be great many thanks Link to comment Share on other sites More sharing options...
delete-account-pleas Posted July 14, 2021 Share Posted July 14, 2021 13 hours ago, Sycomor said: Hello thanks for your answer @PrestaServicePro i guess this will hide on all categories (good for @Khaito ) i would like to hide only on specific categories. if you have any ideas, would be great many thanks A quick work around can be to check which page you are at and depending of this handle your code. For example: {if $page.page_name == 'index'} {* IF PAGE NAME EQUAL TO index DISPLAY THIS *} <h1> <a href="{$urls.base_url}"> <img class="logo img-responsive" src="{$shop.logo}" alt="{$shop.name}"> </a> </h1> {else} {* IF PAGE NAME NOT EQUAL TO index DISPLAY THIS *} <a href="{$urls.base_url}"> <img class="logo img-responsive" src="{$shop.logo}" alt="{$shop.name}"> </a> {/if} 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