I need the forum information (the one that displays “This forum contains 1 topic and 1 reply, and was last updated by admin 1 month, 2 weeks ago”) to be moved to the bottom of the forum. How can I do that?
Move forum information to the bottom
Published on July 15th, 2018 by TrustedOrbDifferent sidebars for different forums
Published on July 15th, 2018 by TrustedOrbHi
I’ve two forums – foruma (http://site/forums/forum/foruma) and forumb (http://site/forum/forum/forumb). I need different sidebars for these two forums. Actually, what I am planning to do is, I need ‘bbPress Recent Topics’ widget to be different on different forums, such that it acts like ‘related topics’.
Is there a way I can achieve it? I’ve tried YARPP, but couldn’t put it to work.
Display of forum path
Published on July 15th, 2018 by jonasgeschkeHi,
in order to better use the single-forum shortcode, is it possible not to display the forum path (“Login => Forums =>”)?
Thanks for your help and best regards,
Jonas
Allow participants to delete their own topics
Published on July 14th, 2018 by mrfreez1Hello !
First, I apologize if my english is not good.
I allowed participants to create their own topics but I don’t know how to give them the permission to delete their own topics and messages. I don’t want to trash their topics, I want to delete them permanently.
Can you help me please ?
Thanks !
Cannot Create New Forum
Published on July 13th, 2018 by hislordshipukI’m currently experiencing an issue where I cannot create a new forum. I have uninstalled every plug-in in turn and reinstalled to check conflicts. I created a new forum 3 days ago without issue.
Any thoughts?
Frustrating Registration Issue
Published on July 13th, 2018 by mygirlfriday805Hello,
I am having issues with registration. I thought I had fixed this issue with an email set up through the server. It is still not fixed. Can someone please help? I’m not sure what to do… I have searched the topics of support before I decided to create my own topic. Again all registration emails are not being sent even though i am using an email set up through my server.
Bypass Trash Topic Participants
Published on July 13th, 2018 by axelstlouis9Hello !
First, I apologize for my english because i’m french.
I allowed participants to delete their own messages and topics but I don’t want the trash, I just want to delete it permanently. It is possible ?
And when I delete a topic, I have a 404 error page. I found a function which redirect on the deleted form and I want to redirect to the topics list. It is possible too ?
Thanks !
Problem with bbp_is_forum_category function
Published on July 12th, 2018 by codenameitaHi there,
I’m trying to write some advanced search functions for BBpress. One of these should let people search only in the forum or subforum they currenty are in. I followed several examples posted on the net and tried to refine them myself.
Unfortunately, I am experiencing a problem with the bbp_forum_get_subforums fuction.
The fuction I am writing should be able to get the list of subforums present in a category type forum when the search is fired from a category type forum.
The code is as follows:
//If the forum is a category, then search in all the subforums
if( bbp_is_forum_category($forum_id)){
$sub_forums = bbp_forum_get_subforums($forum_id);
$subforum_id = array_column($sub_forums,'ID');
$min_subforums = min($subforum_id);
$max_subforums = max($subforum_id);
$r['meta_query'] = array(
array(
'key' => '_bbp_forum_id',
'value' => array($min_subforums,$max_subforums),
'compare' => 'BETWEEN',
)
);
}
Unfortunately, bbp_forum_get_subforums($forum_id) gives a false result.
Strangely enough, if I try to put the same code in a fuction and add it with “add_action” to a forum page, it gives me the corret list of subforums if the current forum is a category.
Can someone please help me addressing this problem? I am using the latest version of WP and BBpress.
Change the number of forums per page
Published on July 11th, 2018 by Ash WhitneyHello. I’d be grateful for some advice please.
Is it possible to change the number of forums per ‘page’ from the default 50?
I appreciate the argument for better categorisation, but the situation I have is a parent category relating to prison establishments and within that category are 104 separate forums – one for each prison establishment, so there’s no scope for categorising any differently.
As my site stands, when visiting the prison establishments page, only the first 50 forums are listed, with no pagination etc. linking to the hidden forums.
Thanks for your time.
Ash
Replies Created & Subscribed Forums
Published on July 11th, 2018 byI am having issues placing a current user’s ‘Replies Created’ and ‘Subscribed Forums’ within their unique templates. See below.
‘Replies Created’ (login testuser / test1234)
https://obeii.com/discussions-replies-created/
Code seems to just want to display all replies instead of the specific users. How can this be corrected to be filtered to that specific user?
<?php global $current_user; get_currentuserinfo(); $uid = bbp_get_current_user_id(); ?>
<?php if ( bbp_get_user_replies_created( $uid ) ) : ?>
<?php bbp_get_template_part( 'pagination', 'replies' ); ?>
<?php bbp_get_template_part( 'loop', 'replies' ); ?>
<?php bbp_get_template_part( 'pagination', 'replies' ); ?>
<?php else : ?>
<p><?php _e( 'You have not replied to any topics.', 'bbpress' ); ?></p>
<?php endif; ?>
‘Subscribed Forums’ (login testuser / test1234)
https://obeii.com/discussions-subscriptions/
It works fine for ‘Subscribed Topics’ below the item, however ‘Subscribed Forums’ comes up empty with no results. Any clue on why that is?
<h2>Subscribed Forums</h2>
<?php global $current_user; get_currentuserinfo(); $uid = bbp_get_current_user_id(); ?>
<?php if ( bbp_get_user_forum_subscriptions( $uid ) ) : ?>
<?php bbp_get_template_part( 'pagination', 'forums' ); ?>
<?php bbp_get_template_part( 'loop', 'forums' ); ?>
<?php bbp_get_template_part( 'pagination', 'forums' ); ?>
<?php else : ?>
<p><?php _e( 'You are not currently subscribed to any forums.', 'bbpress' ); ?></p>
<?php endif; ?>