• jc99

    (@jc99)


    Hello,

    I installed the WP-Forum mod. Is it possible to remove the right sidebar on my website theme (Its a two column theme) so WP-Forum takes up the whole page?

    Thanks

Viewing 1 replies (of 1 total)
  • rainer23

    (@rainer23)

    First, open your theme’s functions.php file and input following php code:

    <?php
    add_filter( 'sidebars_widgets', 'disable_all_widgets' );
    function disable_all_widgets( $sidebars_widgets ) {
    if ( is_home() )
    $sidebars_widgets = array( false );
    return $sidebars_widgets;
    }
    ?>

    This is a function that will remove widget areas from your home page.

Viewing 1 replies (of 1 total)
  • The topic ‘Theme Sidebar and Forums’ is closed to new replies.