Support Center
Visit Demo
License manager
Buy @ envato
toggle menu
Categories
Discussions
Activity
Sign In
·
Register
Sign In
·
Register
Categories
Discussions
Activity
Sign In
·
Register
×
Home
›
Theme support
›
Blog
Remove "Filters section" from blog
kanokkan
August 2014
in
Blog
How to delete the whole "Filters section" on blog page?
Basiclly, i want to remove them from blog section.
Thank you
Comments
Albert
August 2014
Hi,
to remove filters from blog section, please use below css:
.blog #Filters { display: none; }
insondavel
August 2014
Hi,
In my case the filter session disappeared without me doing anything. What can be wrong?
see the screenshot...
http://awesomescreenshot.com/08f3crt756
Thanks!
Albert
August 2014
@insondavel
Without url to page we can`t say anything.
PeterB82
November 2015
edited November 2015
Hi,
I Have removed filters from blog with the css in blog page.
The problem now is because if the user clicks on the category menu or the tags cloud, the filters appear again.
I have tried to copy the line .blog #Filters {display:none;} into Betheme options - Custom CSS, but this process does not work.
How I can remove the filters from all the pages?
Thans you.
Albert
November 2015
@PeterB82
To remove filters from all pages, please use below css instead:
#Filters { display: none !important; }
PeterB82
November 2015
edited November 2015
Thanks, this works!
To complete the blog's customization I had written another css line into the blog page in order to make disappear the category selection in the post:
.blog .category { display: none; }
Like "filter by", the catgegories shows again when the user clicks over the categories or tags from the blog.
How I could include it into the Betheme options - Custom CSS?
Thanks again.
Albert
November 2015
@PeterB82
Sorry but we do not understand where exactly the filtering display. Please send us url to page/s where you want to remove filters as well because as we know, above css should remove them from all pages.
PeterB82
November 2015
Hi,
I have resolved my problem with line css:
.post-meta .category {display: none;}
Albert
November 2015
@PeterB82
Great. We're glad that you solved it yourself
nextgendefense
October 2017
edited October 2017
If you want to remove just one category (for example Authors) you can use :
#Filters li.authors { display: none !important; }
Sign In
or
Register
to comment.
Comments
to remove filters from blog section, please use below css:
#Filters li.authors { display: none !important; }