Published on January 3rd, 2017 by TKServer
I’m trying to make my own nested threaded replies. Right now all the replies appear in my page, but there’s no organization to them. Is the $args method the way to go or do I need to make my own custom sql statement? I’ve got all the data in the args below, but the sort isn’t nested. Not sure how do do that.
$args = array(
'post_type' => 'reply', // custom post type
'posts_per_page' => '50',
'orderby' => 'post_parent',
'post_parent' => $topic_id,
'meta_query' => array(
'relation' => 'OR',
array(
'key'=> $topic_id,
),
array(
'key'=>'_bbp_reply_to',
'compare' => 'NOT EXISTS'
),
array(
'key'=>'_bbp_reply_to',
'compare' => 'EXISTS',
),
),
'orderby' => 'meta_value_num',
'order' => 'ASC',
);
//global $wpdb;
$loopReply = new WP_Query($args);
Published on January 3rd, 2017 by dealfiles
I am having trouble getting my forum descriptions to display correctly on the forum pages. they are displaying correctly on the index page shown in the image below…

However, the description is ahead of the title on the forum page as seen below…

Thanks for helping
Published on January 3rd, 2017 by michal_80
Forum onkologiczne
Wordpress 4.7
bbPress 2.5.12
Hi, I want to create different sections in my forum like on this picture

I’ve tried to make categories and then add forums to it but always the result is not like I want… Do anybody know how to do that?
It is probably very easy;)
Published on January 3rd, 2017 by commanderj5f
Hi all,
I want to see the e-mail address of an anonymous topic creator.
So if someone will post anonymously with name, e-mail etc. I need to see the e-mail address, to invite this user via his mail to another platform.
Of course I don’t want them to post their e-mails in the public forum.
Is this somehow possible?
I can’t see the mails in the backende…
Published on January 3rd, 2017 by debodeq
Hi all. I seem to be unable to open my Forum. All plugins are installed and work, except for the Forum. I just get a blank page and it just won’t open.
I’ve disabled plugins and re-installed in different order, doesn’t seem to be the problem. Also tried in different browsers, which doesn’t do any difference. Just can not seem to open the forum.
Help please ?!
Published on January 3rd, 2017 by hughb1
Hi,
I’ve been trying for some time to import what I consider to be a very small forum but I can’t seem to get the your import function to progress past what I believe to be the early stages of the process and would love any help you can give me. I’ve tried many different import settings from 50 to 35000 rows and 0.1 to 5 seconds pause. I’ve also tired with and without importing users and purging all existing vbulletin tags. But I can never get past the forum hierachy stage. It just sits there forever churning. Anyway the database is on localhost. My host has lots of cpu and a pair of ssds. The forum has 25000 threads and 210000 posts.
Thanks!
Hugh
Published on January 2nd, 2017 by perkiins
Hello I installed BBpress, created categories, forums, replies.. I have problems, in all Forums I see all Topics on all Forums.. I see Topics of Forum (General) in the forum (Games), what I do to only see Topics of Games in the forum Games?
And when I create topic, replie, etc.. in the web I didn’t see the HTML helper bar, with the italic, Bold, etc… what i do to put that?
Published on January 2nd, 2017 by Gilbert
Hi,
WP 4.7, latest BBpress. I have a multisite: swissinformatic.org, magazine.swissinformatics.org, [other stuff]swissinformatics.org. My mail server is @swissinformatics.org and the plugin picks up $_SERVER['SERVER_NAME'] to create the no reply address.
COULD YOU HELP US with a setting box to supersede this value?
Meanwhile I replaced it with my site name in the functions.php code, but mind the next plugin update!
$sitename = strtolower( ‘swissinformatics.org );
Always beware of “Educated guess’ I’m not going to buy a mail server for each subdomain and with the present security of providers,…
I also created a no reply alias of my administrative e-mail address.
Everything is fine now
Subscriptions ***********************************************************/
/**
* Get the “Do Not Reply” email address to use when sending subscription emails.
*
* We make some educated guesses here based on the home URL. Filters are
* available to customize this address further. In the future, we may consider
* using admin_email instead, though this is not normally publicized.
*
* We use $_SERVER['SERVER_NAME'] here to mimic similar functionality in
* WordPress core. Previously, we used get_home_url() to use already validated
* user input, but it was causing issues in some installations.
*
* @since bbPress (r5409)
*
* @see wp_mail
* @see wp_notify_postauthor
* @link https://bbpress.trac.wordpress.org/ticket/2618
*
* @return string
*/
function bbp_get_do_not_reply_address() {
$sitename = strtolower( $_SERVER[‘SERVER_NAME’] );
if ( substr( $sitename, 0, 4 ) === ‘www.’ ) {
$sitename = substr( $sitename, 4 );
}
return apply_filters( ‘bbp_get_do_not_reply_address’, ‘noreply@’ . $sitename );
Published on January 1st, 2017 by Jake Hall
There has been a survey for 2014 and 2015… since the plugin has grew so massively I thought a survey would have come about however there was none.
The information from it is really interesting… when are we likely to see the next bbPress Survey?
Published on December 31st, 2016 by Scordisian
Greetings humans!
I used the wonderful import tool to import my forums from a Drupal7 install. After I completed the import and the repair steps one by one I noticed all my forum topics are listed as Unassigned or (No Forum).
After some searching on the net I realized there is no plugin that allows me to select e.g. 30 topics and then bulk move them to the proper forum.
Is there a way to fix this as I have several thousand forum topics dating back to 2003. I was wondering if there is a query I can use in phpmyadmin or if there is a tool out there I have missed.
Looking forward to your replies!