Probably you have deleted some posts here and there. Try to recount everything from the admin page (bb-admin/tools-recount.php). I have tested get_topic_page_links (the function that generate links) and I don’t see problems.
Your count says 1533 posts but 35*44 + 7 = 1547.
Also add:
.post img, #post_content img {
max-width: 450px;
}
to your CSS.
Probably you have deleted some posts here and there. Try to recount everything from the admin page (bb-admin/tools-recount.php). I have tested get_topic_page_links (the function that generate links) and I don’t see problems.
Your count says 1533 posts but 35*44 + 7 = 1547.
Also add:
.post img, #post_content img {
max-width: 450px;
}
to your CSS.
Hi Ben L.
I’m sorry, second code is not working from my side.
Are you sure about this code?
Please tell me where I’m wrong.
Error:
Warning: Missing argument 1 for bb_get_forum(), called in /home/domain/public_html/my-domain.com/forum/bb-templates/bbp-template/forum.php on line 18 and defined in /home/domain/public_html/my-admin.com/forum/bb-includes/functions.bb-forums.php on line 125
`
Thanks
Hi Ben L.
I’m sorry, second code is not working from my side.
Are you sure about this code?
Please tell me where I’m wrong.
Error:
Warning: Missing argument 1 for bb_get_forum(), called in /home/domain/public_html/my-domain.com/forum/bb-templates/bbp-template/forum.php on line 18 and defined in /home/domain/public_html/my-admin.com/forum/bb-includes/functions.bb-forums.php on line 125
`
Thanks
OOOH … lovely, works like a charm thanks a lot, but is there some serious error that I should know about & perhaps try to fix?
knowing that I installed a fresh copy & not yet touched anything
Thanks again (“,)
OOOH … lovely, works like a charm thanks a lot, but is there some serious error that I should know about & perhaps try to fix?
knowing that I installed a fresh copy & not yet touched anything
Thanks again (“,)
Mark, body[class*=single-bbp], body[class*=page-template-page-bbp] (or if you’re feeling ambitious, body[class*=bbp]) should match bbPress plugin pages. User profile pages currently use the body class for 404 pages, which is a bug.
Find this line and make sure it says error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING);
Find this line and make sure it says error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING);
Your host might be blocking the mail() function, or your email could have been mistakenly marked as spam.
Your host might be blocking the mail() function, or your email could have been mistakenly marked as spam.
Theoretically, you can use anything for authentication by overriding the bb_check_login function.
Theoretically, you can use anything for authentication by overriding the bb_check_login function.
You could use the same method with a little tweak:
$forum = bb_get_forum();
if ( $forum->forum_slug == 'myforum' ) {
bb_load_template( 'forum-myforum.php' );
return;
}
You could use the same method with a little tweak:
$forum = bb_get_forum();
if ( $forum->forum_slug == 'myforum' ) {
bb_load_template( 'forum-myforum.php' );
return;
}
Ben L. Great Tip 
It works… One more question..
Is it possible to make file name according to forum name/slug?
Its now…. forum-ID.php >> forum-7.php
I want….. forum-slug/name.php >> forum-myforum.php
Thank you so much.
Ben L. Great Tip 
It works… One more question..
Is it possible to make file name according to forum name/slug?
Its now…. forum-ID.php >> forum-7.php
I want….. forum-slug/name.php >> forum-myforum.php
Thank you so much.
hello
i want to add code simple chat in the side panel
hello
i want to add code simple chat in the side panel
I don’t think bbPress can do this in its current version (IIRC), but what you can do is put something like this at the top of your forum template:
if ( get_forum_id() == 7 ) {
bb_load_template( 'forum-7.php' );
return;
}
And then copy the forum template (minus the added lines) to forum-7.php and edit it as you want to.
I don’t think bbPress can do this in its current version (IIRC), but what you can do is put something like this at the top of your forum template:
if ( get_forum_id() == 7 ) {
bb_load_template( 'forum-7.php' );
return;
}
And then copy the forum template (minus the added lines) to forum-7.php and edit it as you want to.
Could you explain further?