Hello,
I've been looking around for some sort of widget or hack that will let me remove exclude certain categories from certain pages. But I haven't found anything useful.
Some help would be appreciated.
I'm currently using Advanced Category Excluder, but that widget doesn't have the ability to hide from pages at all
Pages don't necessarily display posts, but it is possible your theme is designed to show posts in Pages. If that is so, with the help of the Template Hierarchy article, determine what Template is displaying your Pages, then you may need to add some code (e.g. query_posts()) to exclude categories.
Example
<?php
query_posts($query_string . '&cat=-5');
?>
Note the -5 says exclude category id 5.
Thanks for your reply. I realize that I was a little short with the info.
Anyway, I solved it in another way, using slayers custom widget and the widget that will let you add php straight into widgets.
the widget that will let you add php straight into widgets
I'd guess you are talking about Otto's php code widget.
Thanks for the feedback--will mark this resolved.