I use the latest bbpress 2.6 RC5. The new feature mention is not working properly.
Whenever a user has email address in the text body, the domain after “@” is considered as mention.
ex: in text body info @ test.com (I use with space because the same case here in forum)
changes to:
@test.com”>info@test.com
and @test is clickable as a mention.
Hi there! I’ve added the login widget to my sidebar with success, BUT the username, password and remember me areas are all off. I do not know CSS nor do I know where to enter it if I did!
I’m using the Divi theme.
This is what it looks like
Username
:
Password:
Remembe
r Me
Anybody know how I can fix this?
Thanks in advance 🙂
Hello everyone, I am new here. I just want to ask if we can integrate MailChimp?
Thank you.
testing these forums for editing
Hello,
I’m trying to rename the current roles as well as ADD new roles. When I add the filter to change the current role name, it doesn’t add the new user role I’ve added. If I remove that code, then the new user role shows up.
This is the code I’m using.
//BBpress Custom Roles //
function add_new_roles( $bbp_roles )
{
/* Add a role called tutor */
$bbp_roles['bbp_lead'] = array(
'name' => 'Community Lead',
'capabilities' => custom_capabilities( 'bbp_lead' )
);
return $bbp_roles;
}
add_filter( 'bbp_get_dynamic_roles', 'add_new_roles', 1 );
function add_role_caps_filter( $caps, $role )
{
/* Only filter for roles we are interested in! */
if( $role == 'bbp_lead' )
$caps = custom_capabilities( $role );
return $caps;
}
add_filter( 'bbp_get_caps_for_role', 'add_role_caps_filter', 10, 2 );
function custom_capabilities( $role )
{
switch ( $role )
{
/* Capabilities for 'tutor' role */
case 'bbp_lead':
return array(
// Primary caps
'spectate' => true,
'participate' => true,
'moderate' => true,
'throttle' => false,
'view_trash' => false,
// Forum caps
'publish_forums' => false,
'edit_forums' => false,
'edit_others_forums' => false,
'delete_forums' => false,
'delete_others_forums' => false,
'read_private_forums' => true,
'read_hidden_forums' => true,
// Topic caps
'publish_topics' => true,
'edit_topics' => true,
'edit_others_topics' => true,
'delete_topics' => true,
'delete_others_topics' => true,
'read_private_topics' => true,
// Reply caps
'publish_replies' => true,
'edit_replies' => true,
'edit_others_replies' => true,
'delete_replies' => true,
'delete_others_replies' => true,
'read_private_replies' => true,
// Topic tag caps
'manage_topic_tags' => true,
'edit_topic_tags' => true,
'delete_topic_tags' => true,
'assign_topic_tags' => true,
);
break;
default :
return $role;
}
}
// End BBpress Custom Roles //
//BBpress Rename Roles //
/* BBPress Renaming Roles */
add_filter( 'bbp_get_dynamic_roles', 'ntwb_bbpress_custom_role_names' );
function ntwb_bbpress_custom_role_names() {
return array(
// Keymaster
bbp_get_keymaster_role() => array(
'name' => 'Administrator',
'capabilities' => bbp_get_caps_for_role( bbp_get_keymaster_role() )
),
// Moderator
bbp_get_moderator_role() => array(
'name' => 'Moderator',
'capabilities' => bbp_get_caps_for_role( bbp_get_moderator_role() )
),
// Participant
bbp_get_participant_role() => array(
'name' => 'Member',
'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() )
),
// Spectator
bbp_get_spectator_role() => array(
'name' => 'Spectator',
'capabilities' => bbp_get_caps_for_role( bbp_get_spectator_role() )
),
// Blocked
bbp_get_blocked_role() => array(
'name' => 'Blocked',
'capabilities' => bbp_get_caps_for_role( bbp_get_blocked_role() )
));}
//BBpress Rename Roles End //
Hi there,
the issue here is that I have several bbpress add-on plugins. If I deactivate BBpress before deactivating all of the add-on plugins (e.g. google translate, AsynCRONous bbPress Subscriptions, bbpress Toolkit etc) the website crashes. If I deactivate all of them first, then no problem.
Is there is simple fix “if” statement that i can add to my functions.php file, whereby “if” Bbpress plugin is inactive, also make the following plugins inactive?
Apart from that, this plugin is great.
Thx
Is it posible to make a separator (a line for example) between post and signature.
For reading posts it is much clearer.
The Recent Topics widget lists each topic’s title and (optionally) author and date posted. How can I alter it to also include the parent forum?
Hi,
I’m sorry if this was answered and/or resolved, but all I’m finding are topics 2 years old, not solved.
My forum has “Enable threaded nested replies 2 levels deep” checked.
It IS working, but when a user click on a “REPLY” button on the comment he wants to reply to, it takes him to the bottom of the page where the form is.
I want that the form appears right beneath the comment I’m replying to.
Thank you in advance,
Tamara
Hi
I used bbpress 2.6 RC 5 and migrated and an SMF forum to bbpress. All went well but the users ae being shown wrong posts .
Some users had 12000+ posts in SMF and now they have 2700 or 3000
Help please!
Kais