harnold007 (@harnold007)

Forum Replies Created

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

  • harnold007
    Member

    @harnold007

    The modifications in step 3 and 5 depend on your theme/layout.

    In step 3 I made css modifications to “theme” the forum colors mostly. These modifications are unique to each site. I just use firefox to inspect elements then locate that element in the bbpress.css file and change it to how I want it to look.

    In step 5 I modified page.php to remove the sidebar. Again this is specific to your site however this is how my page.php looks

    Code:
    <?php get_header(); ?>

    <!– BEGIN MAIN WRAPPER –>
    <div id=”main-wrapper”>

    <!– BEGIN MAIN –>
    <div id=”main3″>

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <!– BEGIN POST –>
    <div id=”post”>

    <h3 class=”section-title”><?php the_title(); ?></h3>

    <div class=”post-entry”>

    <?php the_content(); ?>
    <?php wp_link_pages(‘before=<span class=”page-links”>Pages: &after=</span>’); ?>

    </div>

    </div>
    <!– END POST –>
    <?php endwhile; endif; ?>

    </div>
    <!– END MAIN –>

    </div>

    <?php get_footer(); ?>

    In reply to: Big problem (picture)

    harnold007
    Member

    @harnold007

    The issue is more then likely with your css or page layout. You will have to provide a link to receive more answers.


    harnold007
    Member

    @harnold007

    My installation instructions.

    1. Installed plugin and activated in WordPress.

    2. Copied the contents of /wp-content/plugins/bbpress/bbp-theme-compat/ into my themes root folder /wp-content/themes/YOURTHEMENAME/

    3. Modified bbpress.css in /wp-content/themes/YOURTHEMENAME/css/

    4. Put in this line in my header.php <link rel=”stylesheet” href=”<?php bloginfo(‘template_directory’); ?>/css/bbpress.css”>

    5. Modified my page.php in /wp-content/themes/YOURTHEMENAME/ (please note if you have any other pages using page.php in your theme modifying this file will also modify those pages utilizing this wordpress page template). I modified it so my forum would be full width without the sidebar. This will vary depending on your theme.

    6. Created my forums in my wordpress admin panel under the forum section.

    7. Tested, everything is working great!


    harnold007
    Member

    @harnold007

    I figured out the forum was based off of page.php in my themes directory. I just modified page.php the way I wanted it and it is working great. Thanks!


    harnold007
    Member

    @harnold007

    I changed bbpress.css in folder /bbp-theme-compat/ which I was able to get it they way I want it to look.

    However, it is using my wordpress default page theme. I would like it to use a full width page theme that I have.

    Example it is using:

    <div id=”main-wrapper”>

    <div id=”main”>

    <div id=”post”>

    <h3 class=”section-title”>testing 2</h3>

    <div class=”post-entry”>

    // Then it goes to the forums tag

    <div id=”bbpress-forums”>

    Also, under the default page theme it grabs the sidebar, which I do not want it to do.

    If someone can please point me in the right direction on changing the wordpress page theme that is being used for the forums. Thank you!

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