Published on March 13th, 2017 by PrancingHorse
Hello!
I set up an Avada template with a built in BBPress forum. Everything on the front end looks fine but when I try to register it says, “Something went wrong during registration. Please try again.”. Does anyone else have this issue or know of a fix?
Any support would be appreciated.
Thank you!
Published on March 13th, 2017 by robcruiz
Would it be possible to add a filter to the function that determines the status of a new topic? I understand there is some moderation in place using the word list, topic duplicate, user blacklist, etc. However, I currently have the need to determine the status based on user role. We want all admins and editors to show topics immediately after creation, however, we want subscribers to be set as pending so we can proactively moderate topics (not necessarily replies).
I have added a filter in the core code in order to achieve this. I was wondering if this change could be added to future versions of bbPress. The change is in bbpress>inclues>topics>functions around line 287. It looks like this:
/** Filter Topic Status ***************************************************/
$new_topic_args = array($anonymous_data, $topic_author, $topic_title, $topic_content);
$topic_status = apply_filters('bbp_new_topic_status', $topic_status, $new_topic_args);
Please let me know whether or not this will be implemented, so I know whether or not to update the plugin.
Thanks.
Published on March 13th, 2017 by brettdarnesh
I had posted a topic trying to resolve stopping emails being sent from bbpress.
the problem is worse than I thought.
Participants are getting repeat notifications not just from the days activity but from every activity thats ever happened on the forum since the beginning !!
I really need these notifications to STOP !! it is driving my customers mad !!
Can anyone help?
Published on March 12th, 2017 by dmayer5
Hello:
With the gravity forms user registration add on I’m able to sign people up however the issue is that it automatically assigns users as subscribers but not also “Participants”. Is there a custom User Meta tag that I can add as an admin field to automatically set the new user as a participant in the forum? I tried adding this: bbp-forums-role but it didn’t link in the profile.
Published on March 12th, 2017 by devenjoycode
Hi,
I just got an issue with bbpress, bbpress plugin conflict with Easy content types plugin. Here’s the plugin https://themeisle.com/plugins/easy-content-types/.
The issue is topic tags page always show message “Oh bother! No topics were found here!”, even any topics in that tags. If I deactivated easy content type plugin, topic tags page show the topics normally.
Anyone knows how to fix this issue?
Thank you for helping me. ^__^
Published on March 12th, 2017 by Kalusha
Hey,
I need a button to send a private message to a user. My thoughts:
I have here a function from Robin to show the first and lastname
add_action (‘bbp_theme_after_reply_author_details’, ‘rew_display_user_details’, 20);
function rew_display_user_details () {
$rew_id1=bbp_get_reply_author_id() ;
$rew_id2 = get_userdata( bbp_get_reply_author_id());
echo ‘<div class = “rew_display_user_details”>’ ;
echo $rew_id2->first_name ;
if ( bbp_is_user_keymaster() ) echo ‘ ‘.$rew_id2->last_name ;
echo ‘</div>’ ;
}
?>
I have the Plugin front end pm. In the documentation stand it is possible with that
User name pre-populate new message “To”
Where must a paste it in the function?
regards
Published on March 12th, 2017 by Satoru
i’ve been running a forum site using bbpress. i allow anonymous users to make topics there. but the form for topic tags disappears in the case they make a new topic although it does show to registered users making a new topic, or even a new reply. i have no idea how to solve this.
can anyone solve it?
Published on March 12th, 2017 by DragoWeb
Hi, I’m new with bbpress and using a WP (v4.7.3) with WPML (v3.6.6) to display 2 languages. I created 2 main forums named “English Forum” and “French Forum” with some sub forums under each of them, and I’m looking now for a way to display a search form to target only the “english forum” but also his child forum, and another which target the “french forum” with his child ones.
I’ve found this :http://sevenspark.com/tutorials/how-to-search-a-single-forum-with-bbpress
but it only search on a single forum ID (not to child ones).
I googled for hours but, surprisingly, found nothing really helpful.
I can create my own shortcode to display a search form but how to target a forum_id?
Thanks for any help…
Published on March 11th, 2017 by Amelia
Hi, I am trying to translate the frontend section of my forum, but I can only translate parts of it. Here’s a screenshot : 
As you can see, I can translate the top sentence, but I cannot translate the form part. I even tried to manually edit the php files without success (reverted to default files after).
I am using Loco Translate for editing my translations and my wordpress language is correctly set because I can translate some parts. I also can see the sentences in the Loco Editor but event after changing them, they do not change in the frontend.
I hope I have given enough informations.
Thanks
Published on March 11th, 2017 by unconquered
Hi there,
Was wondering how do I control the capabilities and permissions for guest posters i.e. the posters who can reply and create topics without registering.
My forum requires anonymous guest posting but I need to give Anonymous posters the ability to edit and delete their posts.
I’m not a coder but I can figure it out, the part where I’m stuck is that I can’t find any info on what variable or function controls guest posters. I looked into Capabilities.php and at first mistook spectators for guest posting, however that’s not the case
Thanks