URL: Lhiaa.com
WP version: 4.8.1
bbPress version: 2.5.13
Divi version: 3.0.71
Crossposted from Elegant Themes support:
https://www.elegantthemes.com/forum/viewtopic.php?f=187&t=742751
I did some extensive troubleshooting and narrowed down a conflict with Divi and BBPress were bbpress will not nest comments properly within the Divi theme. I checked all plugins, then checked themes. Nesting works just fine with 2015 theme, but when re-enabling Divi, nesting no longer works. Existing comments that were nested with 2015 remain nested.
Also, with Divi enabled, I receive this error:
Uncaught ReferenceError: addReply is not defined at HTMLAnchorElement.onclick
Hopefully we can find an answer to get this fixed. I know others have asked on both forums with no results for many years…
Thanks for your response. The upcoming version 2.6 seems to solve the issue. I’ve tested it with 2.5.13 yet. Today I’ve tried 2.6-rc-3 and the 404 error is gone.
My testing environment is WP 4.8.1, no other plugins than bbPress, Twenty Seventeen Theme.
I’ve added the following lines to the Theme’s functions.php tp figure it out:
add_filter( '404_template', function() {
global $wp_query;
print_r( $wp_query );
die();
} );
In bbPress 2.5.13 the 404_template filter fires and is_404 is true. In 2.6-rc-3 the filter does not fire.
Would you please do me favor and also check it with 2.5.13 just to be sure?
Thanks,
Peter
After creating new roles they aren’t saved in user profile. In the “Forum Role” select there is “- No role for this forums -“. Though really role seems to be applied. I’ve tried all approaches from this documentation page https://codex.bbpress.org/custom-capabilities/
The only thing that helped was installing “Members” plugin of Justin Tadlock and double creating roles with same names.
I think this is a bug.
The same problem as described here https://bbpress.org/forums/topic/custom-roles-resetting-no-role-for-these-forums/
Having the same problem. After creating new roles they aren’t saved in user profile. In the
“Forum Role” select there is “- No role for this forums -“. Though really role seems to be applied. I’ve tried all approaches from this documentation page https://codex.bbpress.org/custom-capabilities/
The only thing that helped was installing “Members” plugin of Justin Tadlock (thank you Jakobuz) and double creating roles with same names. I think this is a bug.
Hello, please help, I have same problem. Please contribute to https://bbpress.org/forums/topic/allowenable-all-users-create-groups-under-bbpress/
I need contribution of your ideas please. I have a wordpress site that I am designing and I am stuck. I would like to allow/enable all users to be able to publish/create groups under bbpress.
I would like to do this urgently. Your ideas are needed.
Thank you.
Hello great team,
I need contribution of your ideas please. I have a wordpress site that I am designing and I am stuck. I would like to allow/enable all users to be able to publish/create groups under bbpress.
I would like to do this urgently. Your ideas are needed.
Thank you.
I have tested it on my test site using bbPress Version 2.6-rc-3 but i couldn’t reproduce the issue.
The 404_template filter doesn’t get fired for me and is_404 function also returns false as shown here https://imgur.com/a/xmfiM
Could you please describe a bit more in detail how to reproduce it?
I can’t confirm the issue on my test site using bbPress Version 2.6-rc-3
Could you please share the screenshot of the issue or describe a bit more in detail how to reproduce it?
@zopfan This is old topic so let’s resolve your issue in your following topic.
‘Forums Search’ returning wrong results
I have tested it on my test site and it’s working fine for me using latest version of bbPress plugin.
Please make sure you are using latest version of bbPress plugin.
This can be your theme issue on your site so to confirm it just temporary use any default WordPress theme like Twenty Seventeen theme. If everything works fine then it’s your theme issue.
Also this can be due to plugin conflict on your site so please try temporary deactivating all plugins except Unyson plugin and see whether everything works fine and then enable the plugins one by one to see which plugin is conflicting if any.
Could you please share me your site URL where it’s happening so that i can troubleshoot it?
Just want to let you know that if your question is related to bbPress plugin then only post in this forum. In this case it is related to BuddyPress plugin so we requested above to post your question on https://buddypress.org/support/
Your question is related to BuddyPress plugin but this forum is only for bbPress plugin so as requested above please post your question on https://buddypress.org/support/
It’s hard to help you without accessing your site but please try using below CSS code on your site as described here http://freewptp.com/how-to-use-custom-css-in-wordpress-site/ to reduce spacing.
#bbpress-forums .bbp-forum-info .bbp-forum-content {
margin: 0 !important;
}
Please make sure you have uploaded files to /wp-content/languages/bbpress/ of your WordPress installation. If the /wp-content/languages/ and /wp-content/languages/bbpress/ folders do not exist, create them.
Also please rename each file of the files to bbpress-language_COUNTRY.extension
eg. bbpress-plugin-pt-br.po to bbpress-pt_BR.po
and bbpress-plugin-pt-br.mo to bbpress-pt_BR.mo.
Note: Ensure you use the – and _ in the correct place per the above example.
To achieve this you have to translate bbPress in your language as described in the following page.
bbPress in Your Language
Hi, i really want to change my language from English to Danish. In my wordpress Settings > i have changed the wordpress language to Danish. But it docent work in bbpress.
I have the newest version of bbpress, and wp-content > languages there are bbpress-2.4.x-da.po and mo.
what to do?
From memory if you are logged in then you should already be able to do so
see
Codex Standards & Guidelines
When reading bbPress documentation i found some issues and missing information in it so i tried twice to create support forum topic to notify you about this but the topic is not created.
May be because it is in under review.
I read information on this page https://codex.bbpress.org/participate-and-contribute/ to help improve bbPress documentation by requesting access.
@jjj, @netweb, @mercime or @robin-w Could you please grant me access so that i can help to improve it?
You can just hide it using below custom CSS code on your site as described here http://freewptp.com/how-to-use-custom-css-in-wordpress-site/
#bbpress-forums fieldset.bbp-form label[for="bbp_anonymous_website"],
#bbpress-forums fieldset.bbp-form #bbp_anonymous_website {
display:none;
}
Or you can overwrite following bbPress template file in your child theme and remove website field code from it.
/bbpress/templates/default/bbpress/form-anonymous.php
You can change it by adding following custom code in the functions.php file of your child theme.
function vvd_bbpress_translate_text( $translated_text, $text, $domain ) {
if ( 'bbpress' === $domain && 'Voices' === trim($translated_text) ) {
$translated_text = 'Voix';
}
return $translated_text;
}
add_filter( 'gettext', 'vvd_bbpress_translate_text', 20, 3 );
For info, I have already tried to find line 21 as mentioned here, but cant find it.
https://buddypress.org/support/topic/changing-bbpress-column-headings/
Just tested it on my test site and it is working fine for me.
Please make sure you are using latest version of bbPress plugin.
This can be due to plugin conflict on your site so please try temporary deactivating all plugins except bbPress plugin and see whether everything works fine and then enable the plugins one by one to see which plugin is conflicting if any.
Could you please share me the page URL from your site where it is not working correctly so that i can troubleshoot it?
Well we’re all waiting for breaking news for bbPress release or rc4 but online timesheets it is not. And seeing as user onlinetimesheets’ system is built on Microsoft ASP.Net 4 it seems unlikely to make much use of bbPress..
Now, could we get the bbPress on wordpress.org to add the Plugin name (Forum title) to the email alerts? It’s tiring getting all the alerts with no context about which plugin they refer to.
Something like this should do it:
function add_the_plugin_name_please( $message, $reply_id, $topic_id ){
$topic_title = strip_tags( bbp_get_topic_title( $topic_id ) );
$forum_title = bbp_get_topic_forum_title($topic_id);
$messageheader = sprintf( __( 'New post in Forum "%1$s", Topic "%2$s".', 'wordpress-org' ),
$forum_title,
$topic_title
);
$messagefooter .= "\r\n" . "\r\n" . __('Thankyou for participating on wordpress.org', 'wordpress-org' );
return $messageheader . "\r\n" . "\r\n" . $message . "\r\n" . $messagefooter;
}
add_filter( 'bbp_subscription_mail_message', 'add_the_plugin_name_please', 10, 3);