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);
Is this going to conflict with some of the bbPress swnippets I have already implemented. I.e. Login/logout redirection, etc. Or will it conflict with UAM for access to forums.
no idea – you’ll need to test this 🙂
can only give you the area for html
so two files
wp-content/plugins/bbpress/templates/default/bbpress/form-topic.php
wp-content/plugins/bbpress/templates/default/bbpress/form-reply.php
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpress
where %your-theme-name% is the name of your theme
Make a copy of the two files above, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/bbpress/form-topic.php
and
wp-content/themes/%your-theme-name%/bbpress/bbpress/form-reply.php
bbPress will now use this template instead of the original
and you can amend this
Suggest your html/php needs to replace
<?php bbp_the_content( array( 'context' => 'reply' ) ); ?>
but you’ll need to work out exactly how yourself !!
In the spirit of sharing stuff, if you work it out, please post the solution to this thread !!
hello,every budy:
Now i have a wordpress site, i feel it’s comment editor is not strong, can’t upload image and other files. I found the summernote can meet my requirements. Summernote is very powerful, style is also very beautiful. But it is not a plugin, the need to introduce JS / CSS file, and add the appropriate HTML to normal use. Now i have introduce the js/css files, and i want to replacement bbpress native editor, but don’t know how to do it? Can you help me? Give me some advice and help?
In this regard, I will be very grateful!
Best Regards!
Is this going to conflict with some of the bbPress swnippets I have already implemented. I.e. Login/logout redirection, etc. Or will it conflict with UAM for access to forums.
Do I need to make new groups within your plugin as well or can I use the existing with the enable topics permission?