Would you like to hide the new form form in bbp-single-forum?
How can I hide the form in bbp-single-forum?
Published on March 30th, 2017 by tecnolharMove from 2.6a to 2.5.12
Published on March 30th, 2017 by giobbyHi guys,
I’ve been using the alpha version for a while now and my users don’t seem to be happy with it because of the lack of stability.
Do you think it would make sense to install 2.5.15? would it break the current data model?
Thanks for the help.
Gio
Profile Management
Published on March 30th, 2017 by cbclarkHello! I really like the way this forum (bbPress support) allows users to manage their profile. Is it using a particular plugin? My website still displays the standard WordPress black bar across the top of the page for registered users who are logged in.
Thank you!
tag classes for bbPress pages?
Published on March 30th, 2017 by dram2017Hi
My theme author tells me I need to identify the <body> tag class for each of the bbPress pages I want to customize, so that I can target specific pages with custom CSS. I’ve tried inspecting the Forum page through the browser but couldn’t identify anything that looked like the example he provided (postid-####). Could some kind soul please help by listing the <body> tag classes for the bbPress pages, or at least the forum index page?
Mentions using @ symbol in bbPress
Published on March 30th, 2017 by cbclarkHello! Is being able to use @ to mention a user a feature that is available in bbPress? Do I need to do anything specific to get it functioning properly? Right now, it doesn’t happen for me in my forum.
I tried searching for answers but came up with empty handed. Thank you so much for your help.
Thank you so much.
Blank bbPress forum pages
Published on March 29th, 2017 by AlexHi,
I recently saw that all of my forums and reply pages won’t open. The only thing that opens now is the first page of the forum. The others open only in blank page.
Moreover, when I discovered the issue, I deactivated and re-activated all of my plugins, I have reinstalled the bbPress plugin, I have deactivated all of the plugins except bbPress and I have reindexed the permalink but nothing fixed the issue.
I mention that I have created forums and that there are hundreds of replies in there. Also, I’m using the latest version of bbPress on the latest version of WordPress.
My forum is here: https://itutorial.ro/forum/ .
Any suggestions?
Thanks!
Removing bbpress data
Published on March 29th, 2017 by LP9086I have decided to use another software option for my forums.
I was wondering how I go about removing the bbpress data from wordpress once I export my forums out.
login link
Published on March 29th, 2017 by leshtineHi,
i have problem with login page in bbpress
when field (user or pass) is free and press enter you can show my login page in my website
How i can change this?
and how i can set error when some field is empty or wrong?
How to embed in one-page theme?
Published on March 29th, 2017 by dram2017Hi all, hope you are willing and able to help a newbie!
I am building my first website on a one-page theme (Vellum). I’ve installed bbPress and it works fine except the auto-added Forums, Topics and Replies are like separate pages rather than being sections within the one-page theme design. This is an irritation because navigating to any additional pages breaks the one-page navigation smooth scrolling effect. Is there a (simple :)) way I can move the Forums, Topics and Replies to sections within the one-page design rather than have them as additional pages?
Thanks, in hopeful anticipation!
Adding User Roles, but User Title Doesn’t Change
Published on March 29th, 2017 by cocreationcoachingHello,
I added a function in functions.php to add some user roles.
They are now available, but when I set them on a user, their user title on posts only says “Member”, instead of the name I set.
Here’s my code:
function add_custom_role( $bbp_roles ) {
$bbp_roles['neophyte'] = array(
'name' => 'Neophyte I°',
'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() )
);
$bbp_roles['adept'] = array(
'name' => 'Adept II°',
'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() )
);
return $bbp_roles;
}
add_filter( 'bbp_get_dynamic_roles', 'add_custom_role', 1 );
How can I get the desired names to actually show up underneath those users?