Oh I see … that’s good to know, thanks a lot
!!
Oh I see … that’s good to know, thanks a lot
!!
No. You have a very modern installation of PHP and there is some code in bbPress that now it deprecated. Nothing to worry about.
No. You have a very modern installation of PHP and there is some code in bbPress that now it deprecated. Nothing to worry about.
My plugin doesn’t touch the mail code.
My plugin doesn’t touch the mail code.
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.