Hi @pauldlb
Try this… Paste the follow code into function.php (Appearance – Editor – Functions.php)
/* Remove SideBar From bbPress Profiles and Topics*/
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);
Sorry Arutam, that didn’t work.
I pasted it at the end of function.php, that was the idea?
Or must I have it done on the child version?
Anyhow it didn’t change a thing.
Thank you