Forums

Join
bbPress Support ForumsRequests and FeedbackbbPress 2.1 - Theme Compatibility

bbPress 2.1 - Theme Compatibility

  1. Many thanks for the link Andre

  2. Ok, I think I ran into a snag.

    My WordPress/BuddyPress site is HEAVILY modded with plugins. I use a RocketTheme theme that runs off of the Gantry Framework along with Gantry-BuddyPress (which allows BuddyPress to be compatible with the RocketTheme and Gantry Framework.)

    The bbPress plugin worked, but only partially. The Forum page set up by bbPress is visible but instead of seeing the "directory" of forums it shows:

    Home › Forums Forum Topics Posts Freshness General Discussion SO? what now? 1 1 26 mins Admin

    It's all just plain text with no links. But, the forum I made for General Discussion is viewable when I go to the forum page it made.

    For reference, here are the demo page links:

    http://bp.daevas.com/forums/
    http://bp.daevas.com/forums/discussion/na-general-discussion/

    I still have to edit the .css to match the theme design, but I wanted to find out what was wrong with the default forums page and why it wasn't showing up correctly.

    Thanks and hope you can help.

  3. Please provide a step by step instructions on how to enable 2.1 theme in active theme directory.

    Simply copying bbp-theme-compat contents into theme directory wont do it or i just cant.

  4. I was having the same prob Tuomas, but then realised I needed to insert a link to the stylesheet within my header template.

    Putting <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/css/bbpress.css"> directly AFTER the <?php wp_head(); ?> tag allows you to override the styles provided by the stylesheet in the plugin folder.

    Hope that helps :)

  5. Just switched a Genesis based site I'm developing from 2.0 to 2.1-r3774. I was a bit confused by the broken templates, but then realized the Genesis code had been pulled out and found and installed Jared's BBPress Genesis extend (0.8.1) plugin which now makes everything is look good OOTB again.

    http://wordpress.org/extend/plugins/bbpress-genesis-extend/

    There are only a dozen dummy posts and _no_ custom templates yet so I wouldn't really expect it to explode, but I start customizing forum templates in a few days and it seemed to make sense to start with 2.1.

  6. im using it with a fresh install of the latest wp, but i have a styling issue ( http://screen.ticno.com/index.php?image=diLrSMnMxuCXs7Zs9BWr.jpg ). im using the London Live template. it's a local testing and everything is "fresh" without custom code. suggestion?

  7. Yep, that's a some-what common issue.

    In 2.1 table layouts have been ditched for the much preferred clean xhtml (lists, and what not) however some theme's choke on it.

    There are some wrappers in place (such as #bbpress-forums) you should be able to use to reset the styles that are needed,

  8. 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!

  9. Im waiting on the release of the beta

    I have a website.
    sand sieving equipment

  10. 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!

  11. 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!

  12. I followed a similar path to harnold007. Worked out that the markup of all BBP pages is being driven by page.php in my active theme directory.

    For me though, I want some pages to have a sidebar, but forum pages to be full-width.

    This seems difficult to do, because BBP is using page.php to render all its stuff.

    Have to say I admire all the work that's clearly gone into BBP, but the way the themes are working does seem quite complex. I can't help feeling there may be a better way of structuring it? The problem seems to be that you can *sort of* use your normal WP theme directory, but the options for controlling the layout are very limited.

  13. Just realised I probably need to try the 2.1 beta version.

    I went to the URL suggested above http://bbpress.trac.wordpress.org/browser/branches/plugin and downloaded the zip file. However, WP gives me an error saying "invalid plugin header". Anyone know how to fix this?

  14. Any updates on the status of 2.1? The way it deals with theme compatibility is great.

    I installed the 2.1 beta on a test site using harnold007's directions (I wish he'd tell us what the modifications were in steps 3 and 5!)

    When I tried to change themes, or even to deactivate 2.1 I got this error. Anyone know how to fix it?

    Fatal error: Class 'BBP_Theme_Compat' not found in /homepages/6/d396770293/htdocs/Clean_Test/wp-content/themes/bbp-twentyten/functions.php on line 32

  15. 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(); ?>[/code]

  16. Is it possible to insert a search form in the forum header? I have tried to create it my theme's searchform.php with these code :

    <form id="search" name="searchform" method="get">
    <input type="search" id="ts" name="ts" title="Search Topics" placeholder="Search Topics" />
    <button type="submit" value="search" id="searchsubmit">Search</button>
    </form>

    <form id="search" name="searchform" method="get">
    <input type="search" id="rs" name="rs" title="Search Replies" placeholder="Replies" />
    <button type="submit" value="search" id="searchsubmit">Search</button>
    </form>

    The first one search for topics when in a specific forum (e.g. http://www.yourdomain.com/forums/forum/test)

    The second one search for replies when in a specific topic (e.g. http://www.yourdomain.com/forums/topic/this-is-a-test)

    The problem is, I just want the first one to appear in "/forums/forum/test" and the second one in "/forums/topic/this-is-a-test". Where should I insert those codes?

    Or do anyone here have a better idea to make a search form? I tried to make a bbpress search-by-categories page but I'm kinda stuck.

  17. Please test it. It's new code with a new approach, so I'd like to get some fresh eyes on things right away to avoid a long beta period like 2.0 had.

  18. I have put this in to a post.

    [bbp-forum-index]<-Must be something wrong this can not be the way the forums look I am using the Twenty Eleven 1.3 and bbpress Version 2.0.2 everything is up to date what do I do to fix this forum listing so that it looks like a normal forum?

    http://www.school.survivalbill.ca/?page_id=334

    [bbp-topic-index] <-this I dont want just have it up to see what it looks like

  19. Looks alright to me @survivalbill-2. I use bbpress on my site http://www.ibikiniwax.com/forum and it looks similar to yours - do you mean the layout or the list of Forums up top?

  20. yes I want mine to look like yours what did you do to get it like that?

    the layout it did on mine is just stupid any idea on how to get it to look like yours?

  21. How can i disable HTML and/or VISUAL editor? (2.1 plugin version)

  22. How can i disable HTML and/or VISUAL editor? (2.1 plugin version)

    Have you tried Settings > Forum? :)

    Unless you're talking about conditionally toggling the mode, in which case you're on your own to build that as a plugin, similar to WordPress.

  23. You must log in to post.