Closing in favor of your other topic.
Delete “Header”
@leirof
Add this anywhere you can put custom css like in your themes style.css file or in a custom css plugin.
#bbpress-forums div.bbp-the-content-wrapper input{
color: #000;
}
Can you see the forums on the frontend of your site??
Are you saying you cannot see it in the backend in Forums > All FOrums??
While testing your theme everything works fine for me.
You can try some troubleshooting to see if this is hopefully not a cache issue, or see if a plugin is causing the conflict, or if running the repair tools in Tools > Forums helps.
Troubleshooting
Yeah this could be bbPress subscriptions having the issue.
See if installing and using this plugin will help you out.
https://wordpress.org/plugins/asyncronous-bbpress-subscriptions/
@gene-stevo
1 of your topics I see had 3 links and was caught by the link limit, the others I am not entirely sure really because they do have 2 links, they were just pending moderation for some reason.
I did just approve this topic though.
Help end this Mail Del System nightmare. Please!
WP= 4.3.1 bbPress= 2.5.8 Postman SMTP= 1.6.24
I’m learning WP by building a dummy site as a prelude to rebuilding camera club site. Work in progress at: http://www.snapsphotoservices.biz/
An important feature will be forums. I installed bbPress and all was good until I sent out test messages to selected subscribers. Despite the recipients getting the notifications correctly I was never the less presented with MDS errors: Mail Delivery System <MAILER-DAEMON@smtprelay08.hostedemail.com>Undelivered Mail Returned to Sender
Thinking I had server issues I moaned at my host who said “It’s not us…” As SMTP is said to be more reliable I added plugin Easy WP SMTP to the mix. It made no difference. I then tried Postman SMTP and created a new email address so that forums related to this and WP just dealt with original mail.
Strangely it’s this original mail that sent messages are referring to. Attached is a shot of the header a recipient sees. The Mochdre boot address is the address Postman is given and the snaps address is the default WP email address.

Hooray! It worked a treat, everybody gets the messages and I get no errors. Untill tonight when my inbox was filled with the old error messages.
Tried deactivating all plugins etc to no avail. How do I stop WP using its own snaps address when I’ve told SMTP plugin to use mochdreboot address? Or, if I create a mail account of noreply@snaps etc, what the heck happens to all the mail the server gets dumped with (assuming it would help)?
This is doing my head in. Please advise.
Are you talking about where it says something similar to this in the body class. Most themes add this not really bbPress itself. If you are missing this <?php body_class(); ?> in your theme you not be able to see the post id.
postid-652
Or for the topic list of the forum where it shows this.
bbp-forum-652
If you have been heavily editing bbPress templates in your child theme you may not have this in correctly in loop-single-forum.
<ul id="bbp-forum-<?php bbp_forum_id(); ?>" <?php bbp_forum_class(); ?>>
sorry to bump such a old topic, but can someone show the specifc code to add to child theme functions.php? still learning here…
I tried adding this to functions, but produced an error…
function bbp_title_max_length( $default = 90 ) {
echo bbp_get_title_max_length( $default );
}
/**
* Return the maximum length of a title
*
* @since bbPress (r3246)
* @param $default bool Optional. Default value 90
* @uses get_option() To get the maximum title length
* @return int Is anonymous posting allowed?
*/
function bbp_get_title_max_length( $default = 90 ) {
return (int) apply_filters( 'bbp_get_title_max_length', (int) get_option( '_bbp_title_max_length', $default ) );
}
thx!
I can’t reproduce this behavior on bbPress 2.5.8 or trunk using the default WordPress themes. Topics and replies in private forums are listed. Are you using a custom theme? Are you running any plugins that effect user profiles? Are you running BuddyPress?
Just wondering if anyone knows of any plugins that do this. I currently use email notifications but was just wondering if SMS was an option with bbpress.
Thanks
deactivated all plugin exept bbpress, same problem.
If i change theme to standard lost my theme mod?
I want to delete the “header”, the one with freshness (see), can you help me with that?
I use BBPress Visual Composer plugins !
My website (with the header i want to remove): http://mmanouvelles.com/forum/
I use the last WP version.
Ciao tomtower,
I have been looking around on your site but didn’t find anything so far…
The only thing I can advice is to deactivate all plugins (except bbPress), change to a standard theme and then see if it works.
Otherwise some users seem to be very happy with the search plugin : https://wordpress.org/plugins/search-everything/
Just one warning for your site: On page http://www.monsterbashpincab.com/forums/ you have the 2 search boxes, so people might not know which one to choose.
Pascal.
https://wordpress.org/plugins/bbpress-protected-forums/
This is the plugin, it is exactly what I am looking for … but I dont know if its safe to use since its has not been updated for over 2 years!
What is your advice ?
Thanks 🙂
Hi,
I have an ornery, but hopefully easy to solve problem. When I “create a new topic” in my BbPress forum it posts nicely, but then duplicates that post as the first reply. This makes it look like I posted the same information twice. This happens to every new post. It has been going on forever; I just got tired of it. I think it is a checkbox or something level issue. Does anyone have any ideas please?
Thanks in advance.
WordPress 4.2.5 running OneCommunity theme. Yes, this happens on all themes.
Hi tomtower,
Did you create any child themes under your topshop theme ?
Did you copy any bbpress files into the (child) theme ?
Pascal.
Hi to everybody and sorry for my english 🙁
why bbpress search does not work on my site?
Thank’s
I’ve figured out the answer to my own question.
This field is related to the buddy press field wp_bp_activity. That shows something like “joe user replied to the topic xxx in the forum xxx”
_bbp_activity_id isn’t necessary for my reply to code on my particular site for bbpress to work properly. It IS however necessary if I want my Buddy Press integration to reflect activity updates related to the forum.
Hi,
this is in WP 4.3.1 GeneratePress child theme.
So far I have managed to display forum indices, topics, registration, login on actual WP pages so they can easily be designed and targeted through regular hyperlinks and menus. I used plugins like bbp StylePack and CleanLogin for this, plus the bbp shortcodes on the concerned pages.
Now there is at least one loophole that renders everything useless. e.g. when submitting a new topic the system jumps to “Topic” view where my page style settings are ignored. Is there sth like a template for the display of topics?
Also isn’t there a list of shortcodes somewhere that show ALL attribute options, too? The bbp codex https://codex.bbpress.org/features/shortcodes/ lists only the codes, without options.
Hi TKServer,
I stick to my previous comment that using bbpress functions would cause you a lot less sleepless nights 🙂
For understanding the data stored, you can just create a topic, a reply and a reply-to-a-reply and check 2 tables : posts and postmeta. With some basic reverse engineering you should understand what gets saved in the few records that are added. In posts you can find the type. In the metadata you will find the parent of the item (can be a reply, a topic or a forum).
Hope this helps you,
Pascal.
Hi Ben,
It seems to be a known issue, but not bbPress related. Bug tickets have already been opened and closed for this because the issue is coming from other plugins.
You can read more here: https://codex.bbpress.org/bbp_setup_current_user/was-called-incorrectly/
But please let this not refrain you in posting here the issues you see or open a trac debug ticket yourself. It’s better to have it twice then not at all.
Pascal.