Hiding certain categories in sidebar

Posted in: Newspaper
Post count: 34

Hi
I want to find out if there is a way to hide certain categories in the sidebar area?
I use the normal “categories” widget to display categories here but there is no way to exclude or hide some categories that I don’t want to display here

On this sample from my site: https://www.travelhippi.com/visa-free-residency-in-panama/ there is a category called “Spanish America” that I want to hide here

Any simple way to maybe do this with code and not a plugin?

Ciska

Post count: 34

I was trying this code but it’s not working.

function exclude_widget_categories($args){
$exclude = “5,8”;
$args[“exclude”] = $exclude;
return $args;
}
add_filter(“widget_categories_args”,”exclude_widget_categories”);

Post count: 35449

Hi,

Please read our documentation for filter -> https://forum.tagdiv.com/block-settings-guide/

In widgets -> https://www.screencast.com/t/K5u9JBPB
Here you can see the category id
https://www.screencast.com/t/EwvPPshL93G
Create sidebar using tagDiv Composer
https://www.screencast.com/t/n07H6w8E
Here you see the category id
https://www.screencast.com/t/2dD0tieeRLn8

Thanks.

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