we are not dead :/
@netweb is the bbPress community’s import specialist
the guy is most likely asleep now because he was working on some bbPress tickets all night… or all day depending on Aussie time??
as for bbcodes bbcodes is not a default feature for bbPress you would need an additional plugin for that.
https://wordpress.org/plugins/gd-bbpress-tools/ this plugin comes with a quote feature and more.
there is another plugin called bbpress 2 bbcode which would also need the whitelist plugin by the same developer.
add this to functions.php in your child theme
/**
* Include bbPress 'topic' custom post type in WordPress' search results
*/
function ntwb_bbp_topic_cpt_search( $topic_search ) {
$topic_search['exclude_from_search'] = false;
return $topic_search;
}
add_filter( 'bbp_register_topic_post_type', 'ntwb_bbp_topic_cpt_search' );
/**
* Include bbPress 'reply' custom post type in WordPress' search results
*/
function ntwb_bbp_reply_cpt_search( $reply_search ) {
$reply_search['exclude_from_search'] = false;
return $reply_search;
}
add_filter( 'bbp_register_reply_post_type', 'ntwb_bbp_reply_cpt_search' );
got the code from here
https://gist.github.com/ntwb/7363a1de1184d459f0c3
Hi!
How to make the bbpress content show in wordpress search? I create a custom search:
<div class="col-md-8 col-md-offset-4 searchform-top" id="searchform-top">
<form class="input-group" role="search" method="get" id="searchform" action="<?php echo home_url( '/' ); ?>">
<input class="form-control input-block" id="appendedInputButton" type="text" placeholder="Buscar no site" name="s" id="s">
<span class="input-group-btn">
<button class="btn btn-primary" type="submit" id="searchsubmit">Buscar</button>
</span>
</form>
</div>
But bbpress results not appear when i search it.
Using WordPress 4.0
BBPress 2.5.4
I am new to BBPress to start with. We moved our site from one host to a new host. We mapped all the users with the posts/forums/replies. Then all of a sudden all Forums/Topics/Replies are all showing as the Default Keymaster (we have 2 one as support and one for our client).
So Forum public show as Admin but the Creator of the forum in the back end shows the correct person. I have tried repairing the various areas of the forum.
Is there away to change the Author in bulk say to the default Keymaster to another Keymaster.
HELP!
you can place this code into your child themes functions.php file
/**
* Include bbPress 'topic' custom post type in WordPress' search results
*/
function ntwb_bbp_topic_cpt_search( $topic_search ) {
$topic_search['exclude_from_search'] = false;
return $topic_search;
}
add_filter( 'bbp_register_topic_post_type', 'ntwb_bbp_topic_cpt_search' );
/**
* Include bbPress 'reply' custom post type in WordPress' search results
*/
function ntwb_bbp_reply_cpt_search( $reply_search ) {
$reply_search['exclude_from_search'] = false;
return $reply_search;
}
add_filter( 'bbp_register_reply_post_type', 'ntwb_bbp_reply_cpt_search' );
got the code from here, i see you also commented on it to š
https://gist.github.com/ntwb/7363a1de1184d459f0c3
if you were here Iād give you a big kiss.
uhhhhhhhhhhhhhh , your welcome i guess?? haha
about it not being updated in over a year , the plugin is very simple it basically just outputs a shortcode at the bottom of blog posts.
and also that this functionality is going to be implemented in the future release of bbPress.
so when the update comes and says bbPress for WordPress comments in the changelog of the plguin. you can pretty much just remove the topics for posts plugin from there on and just use bbPress.
i havent found a plugin that can do such thing especially allow users to select the tag , sort of like how reddit forums operate.
to hire a dev you can go to http://jobs.wordpress.net/
It is the plugin. I had it turned off because WordPress warns that it hasn’t been updated for over a year.
@robkk if you were here I’d give you a big kiss. I’ve had over 30 emails/contact form messages from website members complaining about the forums disappearing. My web designer in in the Arctic for Xmas, I couldn’t find anyone else with bbPress experience, couldn’t find any instance of a similar problem through many, many internet searches, it’s been a stressful 24 hours so thank you very kindly.
Hi there,
im pretty new to WordPress and css.
Till now everything worked fine but now im trying to resize my bbpress forum (www.die-dunkle-wache.de/forum) to the whole width of the browser.
I got it to width 100% so it has the same width as the navbar, but i want it without the margin left and right (dont know if its margin or max width).
I tried to change the Template but this didnt work.
I just want the forum to resize all the other pages and the navbar schould stay like they are.
Hope u can help me.
Best Regards,
Gotzak
Yes the forums still exist @Robk but they’ve disappeared from posts.
What I mean by that is when you create a new post you have the option of adding a bbPress forum, an option which I always took so that every article has a new or an existing forum linked to it. But the option to add a forum has disappeared, and worse than that so have all the forums have disappeared from every post.
Here is a great example of a post that that had man comments and that looks ridiculous without its forum:
http://whichinvestmenttrust.com/investor-clinic-income-life-required-inheritance/
Thor forum is always at the bottom of the page.
I don’t understand how I simply cannot have forums on my posts any more and after 20 hours of searching around the internet I have no semblance of an answer.
How does bbPress integrate with WordPress? What would prevent it from suddenly not integrating?
This is a known error that occurs in some circumstances.
https://bbpress.trac.wordpress.org/ticket/2412
The fix is to deactivate WP_DEBUG in wp-config
This is just information and should not affect its working
Hi,
still waiting for a solution! Imported users not able to login to wordpress.
thanks
rehan
Okay,
I did install a complete fresh wordpress with only bbpress. Then I added
function bbp_enable_visual_editor( $args = array() ) {
$args['tinymce'] = true;
return $args;
}
add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );
to the functions.php of “Twenty Fourteen”. And again, the same problem as described above. I have to click row one. If I click below it nothing happens.
But – I also found out, that it is a problem of “Chrome” only. Everything is working fine in Firefox and others. Here the cursor jumps to row one if I click into the text field.
So I guess it might not be a problem of bbpress… Not sure.
Any Ideas?
——–
Btw: As soon as I add links into this answer it disappears…
Update WordPress to the latest version as well as bbPress? You should be fine, they’re compatible. It’s mostly other plugins you might have to worry about, but generally things should work. Make sure you take a backup of your data before proceeding.
Okay,
I did a few tests. The Problem also appears if I enable the visual (tab) editor via functions.php, like described here: BBPress Codex, and even if I use this Plugin: bbPress Enable TinyMCE Visual Tab
This is what it looks like on the Website: directupload.net Image
And this is how it looks like in chrome dev tools: directupload.net Image
Can’t believe that I am the only one with this problem… Or am I doing somethings wrong?
I had to deactivate all plugins to determine which one was causing an issue for my site. After identifying the issue (nothing to do with BbPress) and reactivating my plugins all forums have disappeared from the sites and as an option in WordPress new forum posts.
As BbPress and BuddyPress have bother both reactivated I have no idea why the forums are gone?
Does anyone have any suggestions?
I’ve gone through my site several times reviewing many different options but I can’t figure this out?
My site is: http://www.whichinvest.com
I have the latest versions of WordPress/BBPress/Buddypress.
Thanks
I want to update wordpress 3.9 version on my videos website but little confuse that bbpress will work fine after updation.
Hello Robin,
I don;t know what the issue is with this forum, but that last reply with the pictures is the post I’ve tried to post 2 days ago…
I already solved it with custom css
http://www.pc-helpforum.be/topic/55670-wordpress-bbpress-plugin/#entry437428
(your reply wasn’t visible at that time either).
So again I don’t know what’s wrong with this forum that post get delayed posted for over a day, but it isn’t really helpful.
It’s likely inheriting the bullets from your WordPress style.css rather than something coming from the bbPress stylesheet. So what you can do is add something like the below CSS to your bbPress stylesheet.
#bbpress-forums li {
list-style-type: none;
}
That will likely remove bullets from forum posts as well, but it’s hard to get specific without seeing the site itself.
Hopefully that takes you in the right direction.
ok, so it sounds like a theme issue, so I googled ‘wordpress theme pinboard bbpress’ and got this
https://wordpress.org/support/topic/bbpress-forum-homepage-displaying-oddly?replies=8
the advice is closed to perfect as this looks very strongly like your problem. The only issue might be that the page.php file has been changed in a later version and the lines might be slightly different.
Read this first for background
Step by step guide to setting up a bbPress forum – Part 1
so try the following
1. copy page.php and rename it bbpress.php
2, edit the bbpress.php file
line 12:
<?php post_class(); ?>
to
<?php $classes=get_post_class(); echo str_replace(“twocol”, “onecol”, $classes); ?>
4. modify LOCAL forums.php line 18:
<?php the_content(); ?>
to
$content = get_the_content(); echo str_replace(“twocol”, “onecol”, $content); ?>
Save this file and reload it to your theme
As the link says, you should really put it into a child theme
Functions files and child themes – explained !
but either way keep a copy of it.
Come back if this isn’t clear
Hello,
I have imported the users from phpbb into wordpress(bbpress) using Importing Tools. But the users are not able to login to system. are there any setup required to allow imported users to login?
I have checked the wp_usermeta table and many rows filled for imported users along with this column ‘_bbp_password’.
In wp_users table password is empty for imported users. I have read some where this password will update after the first login. But in my case the imported users are not able to login in WP.
can you guys help regarding this?
thanks
rehan
I installed the GD bbPress Tools plugin and the plugin itself works great. However, when you go to edit profile so that you can edit your signature, everything is “white” and you can’t see what you have written, etc. I originally had this issue on the actual bbPress forums but I downloaded the bbPress UI settings and changed it to a dark theme. I am completely lost in codec’s and css, etc, but I would like to know what to do to change this as it is really annoying some of the people that joined our site. I’m attaching a picture of what the issue appears to be.
Wordpress Version is 4.0.1.
Theme is Falcon (Child theme of 2014 themes)
GD bbPress Tools version is 1.6
