Search Results for 'bbpress'
-
Search Results
-
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. ^__^
Topic: bbpress private message
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
Where must a paste it in the function?
regards
Topic: topic tags form not showing
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?
Topic: Search form by forum ID
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…
I am new to bbpress, and need a solution to allow my users to reply in a structured way instead of typing everything in a paragraph.
Example: admin will post a topic with some details/pics etc. All reply to the post should come answers to 4-5 pre-defined questions.
Is there any way of doing that?
Hello at the forum,
is it possible as an WP-Admin to subscribe an Email Adress (or a WP User) to an specific bbpress topic?Thanks for your help.
Best Regards
JƶrgWP: 4.7.3.
bbPress: 2.5.12Topic: Stop all emails from bbpress
I have a number of not so happy customers being inundated with emails from the forum, they are receiving numerous repeat emails for some reason.
I’m happy to try and figure it out, BUT for the URGENT NOW, I need a way to just shut off all the emails coming from bbpress. Is there a surefire way to do this?
happy with functions.php code snippets, anything
thanks for your help
Brett
I am using bbpress forum plugins for my wordpress websites. so i just wanted to know how i can display all related post underneath the topic just like similar to word press blog post comment & reply. So you don’t have to click to another page to view the posts.
Hey folks!
Please forgive me if I’m missing something obvious. I’m looking to allow users that are creating new topics on the frontend of my BBPress-based site, to add a featured image to their topics.
This image wouldn’t appear in their topic itself. Instead, the featured image would exist on indexed pages listing a series of topics in one area. Does this feature exist in a plugin, or is there a more customized way to add this feature?
Thanks!
Topic: Http 500 error
Hi
Bit of a beginner here so forgive me if I’m asking something which should be obvious!
I have installed BBpress on my wordpress site but when I click on the forums tab on the wordpress dashboard it seems the link is broken. It takes me to a “HTTP 500 error” default screen. I can click on “New forum” but not “All forums”. Similarly when you click on any of the forum links on the homepage, even those links appear broken as you don’t land on that forum. Even then, I get the same HTTP error. Any ideas?
I’m working an educational website that produces video content and uses a BBPress forum for discussion rather than the native WordPress comments. Here’s how it works:
I have a hook on
wp_insert_postthat creates a new BBPresstopicwhen a newvideopost is created and saves this newtopic_idto a_comment_topic_idmeta field.In my
single-video.phptemplate where the video is displayed, I’m using the BBPress[bbp-single-topic id=$topic_id]shortcode to display the topic thread and reply form for people to post comments.All of this works great! I’m just having one problem – the “subscribe” feature of BBPress isn’t working when people post replies via the Video Single page. The reply is posted just fine, but subscribed users don’t receive a notification. If you’re not familiar – when a user subscribes to a thread, they receive an email whenever someone replies to the thread. This is still working fine when someone posts a reply via the actual Thread single page – it’s only a problem on the thread embedded via the shortcode on the Video single page.
I’ve tried digging into the core and I got so far as to discover that the
bbp_new_replyaction isn’t firing – BBPress uses a function calledbbp_notify_topic_subscribershooked intobbp_new_replyto send the notifications and that function isn’t running at all when a reply is made via the Video single page.It seems that BBPress uses some hidden inputs to determine what actions to run after a reply has been submitted, but those seem to be included properly through the shortcode. These appear at the bottom of the Topic single form (that works properly);
<input type="hidden" name="bbp_topic_id" id="bbp_topic_id" value="422573"> <input type="hidden" name="bbp_reply_to" id="bbp_reply_to" value="0"> <input type="hidden" name="action" id="bbp_post_action" value="bbp-new-reply"> <input type="hidden" id="_wpnonce" name="_wpnonce" value="83ea236cd1"> <input type="hidden" name="_wp_http_referer" value="/forums/topic/SLUG/">And these appear at the bottom of the Video single form (that doesn’t)
<input type="hidden" name="bbp_topic_id" id="bbp_topic_id" value="422573"> <input type="hidden" name="bbp_reply_to" id="bbp_reply_to" value="0"> <input type="hidden" name="action" id="bbp_post_action" value="bbp-new-reply"> <input type="hidden" id="_wpnonce" name="_wpnonce" value="83ea236cd1"> <input type="hidden" name="_wp_http_referer" value="/videos/SLUG/">I’m at a loss for how to debug this issue further and could really use some help. BBPress has all kinds of page type/post type checks in the core that I’ve been ducking and weaving around, but this one has got me stumped. I suspect the problem is that SOMEWHERE it’s checking the post type of the current post, seeing it’s a
videoinstead of atopicand bailing before the action runs, but I have no idea how or where to find that and how to patch around it.Thanks!