Search Results for 'bbpress'
-
Search Results
-
Need help getting my bbPress forum up and running.
Where can I find experts for hire?
I don’t want to do Fiverr, etc.
Thank you.
Topic: How to troubleshoot
We are using latest bbPress version and have encountered problem that bbPress stop working quite frequently, it doesn’t find any post.
To fix the issue we have to disable plugin and enable again and it works again.
Question is how to troubleshoot this kind of issue?
We’ve been using wp-poll to insert polls into topics, but after moving web hosts and upgrading to bbPress 2.6.6 and WordPress 5.5 the shortcodes don’t appear to be working.
If I create a topic and put in the shortcode ‘[poll id=”93″]’, the post simply shows that shortcode. It doesn’t look like the shortcodes being rendered.
Has anyone seen this before, or have ideas on what I can try to get polls working again?
Thanks!
How can I put on the search function above of the breadcrumb in forum,topic,reply page?
I got the Adding action code in the bbPress codex page.
but I did not get the hook point for the Adding action.
Please show me the hook point(XXXXXXXXXX) .//display bbPress search form above sinle topics and forums
function rk_bbp_search_form(){
if ( bbp_allow_search()) {
?>
<div class=”bbp-search-form”>
<?php bbp_get_template_part( ‘form’, ‘search’ ); ?>
</div>
<?php
}
}
add_action( ‘XXXXXXXXXX'(forum,topic-page), ‘rk_bbp_search_form’ );
add_action( ‘XXXXXXXXXX'(reply-page), ‘rk_bbp_search_form’ );οΌdefaultοΌ
γγγοΌγγγοΌγγγγγγγ
[Search function]γοΌCustomizeοΌ
[Search function]γ
γγγοΌγγγοΌγγγγ
Hi All,
Recently, my forum is no longer allowing participants to post. only moderators.
The settings are activated correctly:
I’ve noticed the editors are looking different between moderator and participant, please see below:
I’ using BBpress v 2.6.6 and WP v5.6my site is http://www.simplyexam.ca
Can someone tell me how to fix it so that participants can post?
P.S apology for the messy links I’m a noop to HTML
ThanksHello all,
I am in the process of migrating a phpbb forum to a bbpress forum.In my phpbb forum, I have a forum for each group of students. and only they can see that forum.
(about 160 forums)
also I have a group of admins who can see all forums.Is that possible in bbpress?
Thanks
MickeyTopic: Dumb question
Hello people π
Dumb question, but, how I insert image in body of post here at bbPress support?
I want to ask question, and want insert image in post like I see others do here.
Thanks
Topic: latest bbpress 2.6.6
Updated to 2.6.6 and wow did my server load spike! took me a week to figure out it was bbpress update as i also did many other updates that day anyways downgraded back to 2.6.5 all good. Any idea why this would happen? Forums are somewhat large but i dont think huge: Total forums: 36 β’ Total posts: 94,124 β’ Total topics: 7,381 β’ Total users: 36,925
Hello,
my Forum http://www.exoten-forum.de is on the air for only one day now. When users postet interesting photos in “Test” I’d like to move the posting to the appropiate forum f.i. “Palm trees”. But this does not work. The “move” button only offers a new thread in the same forum. How can I move postings all over?WP Version 5.6
Theme Twenty Twenty-One
BBPress Version 2.6.6
Site: http://www.exoten-forum.dePflanzenoma
How do I check if user has X number of posts inside bbpress forum to allow him to see blog post.
For example, for logged in user, it would be like:function show_to_logged( $atts, $content = null ) { if ( is_user_logged_in() ) { echo 'Welcome, registered user!'; } else { echo 'Welcome, visitor!'; }; add_shortcode('show_to_logged', 'show_to_logged');function show_to_bbpress_user_with_x_posts( $atts, $content = null ) { if ( user_has_X_BBPRESS_topics_or_topic_replies() ) { echo 'Welcome, registered user!'; } else { echo 'Welcome, visitor!'; }; add_shortcode('show_to_bbpress_user_with_x_posts', 'show_to_bbpress_user_with_x_posts');What would be correct function for
user_has_X_BBPRESS_topics_or_topic_replies?