Hi when I click to show all of the posts in a certain category, it has a menu on the top right side which has: Latest, Featured Posts, Most Popular, 7 Days Popular, Random and By Review Score.
How do I remove the ‘By review score’ because I am not reviewing anything on my website at the moment.
Hi,
You can only disable only the whole filter in the theme panel
– https://www.screencast.com/t/EAoZ06zMT
However I could give you a CSS code to remove that option
– https://www.screencast.com/t/LubDeOqBe
Enter it in Theme panel->Custom CSS if you should consider using it
.category .td-pulldown-filter-list li:nth-child(5) {
display: none;
}
Thanks
Hi,
@mmedia Tried it again, seems to work – https://www.screencast.com/t/EvRkhZBpQn
Does it not work after you enter it in the theme panel? Could be caching, clear the website cache, also force refresh the category page (Ctrl+Shift+R).
Hi @ubuntu,
You want to remove the featured posts from category page http://prntscr.com/oojrfp, if yes, then you can try this custom css http://prntscr.com/oojrux
.category .td-pulldown-filter-list li:nth-child(2) {
display: none;
}
Set the code in theme panel>Custom code>Custom css
Unfortunately those are the only filters for the category page, sorry!
If this is not what you mean, please provide some more details and some screenshots!
Thank you!
Hi,
There is no css code to add the most commented filter in drop down category page -> http://prntscr.com/oowyt1 , sorry!
If this is not what you mean, please provide some more details.
Thank you!