• Hi – I’m using a child version of TwentyEleven and wish to install the WPBB plug-in. When I activate WPBB everything in the sidebars and footers just disappears – whoooosh! Gone!
    Any help would be greatly appreciated as this site is scheduled to go live at the weekend!
    Thank you.
    P.
    Actually, I just tried again and found that it is just the content of these areas AND the main body text disappears. In fact it doesn’t exactly
    disappear, – all the black text turns into white text and hence is not visible!

    http://wordpress.org/plugins/wp-bulletin-board/

Viewing 4 replies - 1 through 4 (of 4 total)
  • i have same problem too

    continue previous topic…

    indeed i have same trouble as you but at another theme, for this situation, i was make some modification of wpbb-template.php from original code…

    <?php
    
    /*
    	Template Name: WPBB
    */
    
    /*
    	This file is created apon activation or theme switch in your current theme directory.
    
    	Do not remove this file at any time as it is loads all the neccessary files for wp-bb to run on the frontend
    */
    
    get_header();
    
    require_once(ABSPATH.'/wp-content/plugins/wp-bulletin-board/php/wpbb-forum.php');
    
    get_footer();
    
    ?>

    to this

    <?php
    /*
    Template Name: WPBB
    */
    
    /*
    	This file is created apon activation or theme switch in your current theme directory.
    
    	Do not remove this file at any time as it is loads all the neccessary files for wp-bb to run on the frontend
    */
    ?>
    
    <?php get_header(); ?>
    
    <!-- ************************************************************* -->
    
    <?php require_once(ABSPATH.'/wp-content/plugins/wp-bulletin-board/php/wpbb-forum.php'); ?>
    
    <!-- ************************* -->
    	</div>
    </div><!-- close innerContent -->
    <?php get_sidebar();?>
    <?php get_footer(); ?>

    without attention owner developer.

    indeed is now sidebar properly show. however, new trouble was come, when i try to create new post, the page automatic go to home page.

    so this solution is no yet perfect.

    additional information…

    i modify it for the themes are called “wood is good”, perhaps the solution no suitable for themes “TwentyEleven”

    Thread Starter peterrodger

    (@peterrodger)

    It’s now some time since I had this problem. I seem to recall that the fix was somewhere in the CSS rather than in the PHP file. Sorry I can’t remember enough to be more specific.
    Peter

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘activating WPBB kills all sidebar, footers’ is closed to new replies.