Quantcast
Channel: bbPress.org » All Posts
Viewing all articles
Browse latest Browse all 3638

Reply To: Hide Sidebar

$
0
0

I pasted this code under main wp-config.php and side is gone.
function disable_all_widgets( $sidebars_widgets ) {
if ( function_exists(‘is_bbpress’) ) {
if (is_bbpress()) {
$sidebars_widgets = array(false);
remove_all_actions(‘bp_register_widgets’);
unregister_sidebar( ‘bp_core_widgets’ );
}
}
return $sidebars_widgets;
}

add_filter(‘sidebars_widgets’, ‘disable_all_widgets’, 1, 1);

My question is how do we remo Options like Topic Type and Topic Status ???

Thank you.


Viewing all articles
Browse latest Browse all 3638

Trending Articles