Forum Replies Created
-
In reply to: active theme does not include bbPress template files
errol, you need the development version, not the latest stable release. You’ll have to use Subversion to check it out. Link in on the download page: https://bbpress.org/download/
Ended up using the code in this post: https://bbpress.org/forums/topic/bbpress-20-plugin-adding-a-log-inout-link-to-the-top-of-every-forum-page
Ended up using the code in this post: https://bbpress.org/forums/topic/bbpress-20-plugin-adding-a-log-inout-link-to-the-top-of-every-forum-page
Hi John, sorry not getting your point. I’m using the default install. I’ve added the plugin and the forum is showing and functional but there is no login/register links anywhere – are you saying there is no login/register link within the default install/theme?
Hi John, sorry not getting your point. I’m using the default install. I’ve added the plugin and the forum is showing and functional but there is no login/register links anywhere – are you saying there is no login/register link within the default install/theme?
Amen to that!
In reply to: Where are the default template files stored? v2Hi Raphaelsuzuki – no, making a page (with full width template) and setting it as the base slug doesn’t work I’m afraid.
I’m not using TwentyTen, I’m using a child theme based on Thematic. I ended up just filtering the sidebar away with the following in my main theme’s functions.php:
function remove_sidebar() {
if(function_exists('is_bbpress') && is_bbpress()){
return FALSE;
} else {
return TRUE;
}
}
add_filter('thematic_sidebar', 'remove_sidebar');Hope that helps someone in future.
In reply to: How to exclude forum post_type within functions.php?Sure, I have a custom theme and this sits in the functions.php and loads in a block of HTML for single posts that aren’t in certain categories. However, since installing bbPress, this block of HTML is also showing on the forums (it shouldn’t) so I need to exclude it. Someone offered some help on another forum so I now have:
if ( 'forum' != get_post_type() && !in_category(array('54', '55', '56', '57', '58')) && !is_category(array('54', '55', '56', '57', '58')) ) { ?>
Which means my forums now show but this chunk of HTML is now showing on pages too (it shouldn’t show there either) so I need to now exclude pages as well! Any idea how I might do that?