How to remove something from category dropdown menu

Posted in: Newspaper
Post count: 71

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.

Post count: 20688

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

Post count: 6

This doesn’t work anymore?

  • This reply was modified 7 years by mmedia.
Post count: 20688

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).

Post count: 26

what’s the css code to remove featured posts & what’s the css code to add most commented (I don’t want it to display on two sections or pages where I don’t have comments enabled though is it possible?)

Post count: 35449

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!

Post count: 26

What’s the css code to add most commented?

Post count: 35449

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!

Viewing 8 posts - 1 through 8 (of 8 total)
The forum ‘Newspaper’ is closed to new topics and replies.