Re: Best way to remove ‘unresolved topics’
there are two things you have to do..
- one change the topic tempalte to remove the call to topic_resolved()
<li id="resolution-flipper"><?php _e('This topic is') ?> <?php topic_resolved(); ?></li>
- fix get_views() in the functions.php
to that just write a plugin to remove the unwanted options from the views
function my_no_support_views($views) {
return array_diff($views, array('unresolved' => __('Unresolved topics')));
}
add_filter('bb_views', 'my_no_support_views');