Forum Replies Created
-
In reply to: Shortcode
that shortcode shows the full list of forums, not topics.
if that is your only forum, and you want to display all the topics of that forum, then use
[bbp-single-forum id=$forum_id]
In reply to: Shortcodeok, you’ll need to say more about what you issue is – I just fired up that link, and it seems to be showing a forum and then if I click that it goes to topics and replies etc.
what do you think is wrong?
In reply to: when clicking on a forum/topic a blank screen shows@alexalalalad321 – great – glad you are fixed.
@kagunda – I was responding to alexalalalad321 – you jumped in on this thread, and are assuming you have the same problem. It is generally worth starting a fresh thread – two people with stomachs that hurt do not often have the same illness 🙂 Anyway I would suggest you raise this with oxygen builder as this is a paid theme and I have no access to it.In reply to: when clicking on a forum/topic a blank screen showsThis is one of the new FSE themes, so you need a fix to work with bbpress.
installonce activated, navigate to
dashboard>settings>bbp style pack, and you should see the first tab called ‘Theme Support’ – if you don’t see this, come back.
In that tab, select
Enable Theme Support
and save
The forums should then display
In reply to: when clicking on a forum/topic a blank screen showswhat theme are you using?
In reply to: Buddypress new vesion (12.0.1) Not compatibleI am not a bbpress author, not a lot I can do.
bbpress is a WordPress project – suggest you write to Matt Mullenweg about why no-one is currently assigned to bbpress to keep it up to date.
In reply to: Cannot set forum moderatorok, glad you are fixed
In reply to: Buddypress new vesion (12.0.1) Not compatibleadd this plugin
In reply to: Cannot set forum moderatorthe backend seems to only save one moderator.
This code should fix
add_action ('bbp_subscriptions_metabox' , 'rew_set_hidden_subscribers' ) ; add_action ('bbp_topic_attributes_metabox_save' , 'rew_save_subscriptions', 10 , 2) ; function rew_set_hidden_subscribers ($post) { // Get user IDs $user_ids = bbp_get_subscribers( $post->ID ); $list = implode(",",$user_ids); // Output ?> <input name="rew_topic_subscription" id="rew_topic_subscription" type="hidden" value="<?php echo $list; ?>" /> <?php } function rew_save_subscriptions ( $topic_id, $forum_id ) { // Handle Subscriptions if ( bbp_is_subscriptions_active() && ! empty( $_POST['rew_topic_subscription'] )) { //update_option ($subscriptions) $subscriptions = explode(",", $_POST['rew_topic_subscription']); foreach ($subscriptions as $subscription_id ) { // Check if subscribed and if so do nothing if (bbp_is_user_subscribed( $subscription_id, $topic_id )) continue; else { bbp_add_user_subscription( $subscription_id, $topic_id ); } } } }
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
or if you use
this fix is automatically added
In reply to: Limit the Forums a Moderator can see in Admin Panelmost people use the front end for moderators, they see their abilities in the admin links
you just set the moderators for each forum on the backend
In reply to: How to stop forum spammersNot a lot – I delete 3-6 posts a day on this forum.
As AI starts to get more popular for spammers, it is getting harder to spot them, many posts now have several sentences seeming to answer the question (though almost always in a generic way) before containing a link to their site to get their backlinks quota’s up.
In reply to: Index redirects to post archive pagethanks, and thanks for posting back your solution
In reply to: Anyone using WPMobile for app creation of forumgreat and thanks for the detailed response 🙂
In reply to: Anyone using WPMobile for app creation of forumthat’s great news – Since you said you were having problems (‘am finding it pretty hard going to be honest’) any recommendations or tips on setting this up?
In reply to: Can A Single Login Control Multiple Fourm ProfilesI don’t know of anything that does this within bbpress.
However bbpress just uses then wordpress login, so anything that does that in wp would work.
This looks like a possible option…
Otherwise you could just allow ‘anonymous posting’ which would let users post under multiple names, but of course could not be limited to paid members.
In reply to: Navigation barwhat wordpress theme as
dashboard>appearance>themes
In reply to: Topics Created via API Aren’t Showinggreat – glad you are fixed 🙂
In reply to: Forum Index Page Titileyes, that sounds about right – try asking rankmath from what field they get the breadcrumb element
In reply to: Topics Created via API Aren’t Showinggreat and thanks for posting back the solution – so are you all fixed ?
In reply to: Navigation baryou should have a breadcrumb navigation, what theme are you using?
In reply to: Forum Index Page TitileIn reply to: Forum Index Page Titileyes please
In reply to: Forum Index Page Titilesorry, I’d like to help, but you site keeps throwing ad click bait at me
In reply to: Topics Created via API Aren’t Showingwhen you have completed, in the spirit of open software and helping others, can you post your final solution code please
In reply to: Topics Created via API Aren’t Showingfor completeness look at
\bbpress\includes\topics\functions.php line 96
This is what bbpress does to create a new topic.
on line 378 it has a hook
do_action( 'bbp_new_topic',......
which is used in
bbpress\bbpress\includes\core\actions.php
Line 206: add_action( 'bbp_new_topic', 'bbp_update_topic', 10, 5 ); Line 241: add_action( 'bbp_new_topic', 'bbp_notify_forum_subscribers', 11, 4 ); Line 287: add_action( 'bbp_new_topic', 'bbp_increase_forum_topic_count' ); Line 327: add_action( 'bbp_new_topic', 'bbp_increase_user_topic_count' ); Line 346: add_action( 'bbp_new_topic', 'bbp_update_topic_engagements', 20 ); Line 350: add_action( 'bbp_new_topic', 'bbp_update_topic_voice_count', 30 );
to call the other functions that update the meta, and thus get the topic to show.