pmuktan (@pmuktan)

Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • In reply to: Hide Sidebar

    pmuktan
    Participant

    @pmuktan

    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.

    In reply to: Hide Sidebar

    pmuktan
    Participant

    @pmuktan

    @robin
    Thanks for your support.

    I saw Widget Logic Options but how do i use it ?

    Regards

Viewing 2 replies - 1 through 2 (of 2 total)