Create a page with the same slug as your forum root. It will appear as an empty page. Then use the Shortcode [bbp-topic-index] to show the topics index.
Hi,
We – http://www.onemorething.nl – are integrating our forum – http://www.onemorething.nl/community – with an external search engine, that builds an index directly from our database. We run into a problem if we want to link directly to a post on page x that have been retrieved by the search engine. We can only link to the first page from a topic.
Is there a method stored in de bbpress-code that we can use to construct the proper paged url?
sample from a huge topic on our forum:
http://www.onemorething.nl/community/topic/mijn-ontdekkingen-van-vandaag/page/3148#post-2361033
What we want to retrieve/create: /page/3148
Our recent-post list does something familiar, but how?
We are running BBpress version 1.0.2
Hi there,
I would like to have a simple support forum like this in this site here:
http://purerover.com/forum/index
but when I install my site the forum plugin isn’t compatible with my used theme.
The forum isn’t displayed well and also I can’t set it up in pages (i tried short codes but they don’t work
properly)
So two question:
1. Is there a PDF documentation on how to set up a forum like this: http://purerover.com/forum/index
2. Do I other plugins to let my “support forum” be like this one: http://purerover.com/forum/index
or just bbpress?
Thank you and a good night from auckland! (saturday mornign 4:40am)
I want to allow all my forum members to use this tag <pre name=”code” class=”cpp”> tag.
Now only I (admin) can use it; but I want to allow any registered member to use it.
I have some css + js files to make the code written inside this specific tag display differently.
Hope you got it.
Please help..
SKParticipant
https://wordpress.org/support/topic/plugin-bbpress-help-me
Tried this?
.bbp-forum-info .bbp-forums li {display:block;}
Hello,
It’s the same problem for me.
External links are broken. The href=”externallink.com” disappear after using the code.
I am not a developer, just a blogger who is looking for solutions, but something seems strange to me In this line :
$text = preg_replace('|]+http
//))(?!([^>]+'.$domain.'))(.+)>|iU', '', $text);
It seems that all the content of ‘ a ‘ is replaced by ‘ a rel=”nofollow” target=”blank” ‘
So, the href=”…” disappear
Simple bbpress topic moderation,this would go in your functions.php
<br />
/*<br />
* all topics published by guests<br />
* must be approved by admin<br />
*/<br />
add_action( 'save_post', 'pending_guest_topics' );<br />
function pending_guest_topics( $post_id ) {<br />
if ($parent_id = wp_is_post_revision($post_id)) {<br />
$post_id = $parent_id;<br />
}</p>
<p> if(!is_user_logged_in() && current_user_can('manage-options')==false) {<br />
// unhook this function so it doesn't loop infinitely<br />
remove_action('save_post', 'pending_guest_topics');<br />
wp_update_post(array('ID' => $post_id, 'post_status' => 'pending'));</p>
<p> // re-hook this function<br />
add_action('save_post', 'pending_guest_topics');<br />
}<br />
Upgrading to the latest version from track has fixed this issue.
Just a quick question about my theme, is it okay for me to leave the existing files from the old bbpress theme within my theme? Or should I recode it from your new theme files?
Hi,
I’m running bbpress Version 2.0.2. I am thinking about trying out some of the plugins but I am not able to install any of them..
I have created a folder called “my-plugins” in the root of the bbpress folder.
However, I cant see anywhere to actually install the plugins? The documentation says “Click the plugins tab”. However, in WordPress all I can see is “Forums”, “Replies” and “Topics” with no “Plugins” tab?
I am logged in as the admin account (the same account that installed the forums).
Hoping someone can point me in the right direction 
Thanks
Hello,
I have one question about forum bbpress on multisite.
I have community site about few games and i have the main site where are buddypress and 6 subsites in subdirectories.
On main site I have 7 forums for each subsite, and I would like to know how to show latest active topics from each section on specific subsite.
Is that possible ?
For example: main site have forums for subsites: Blizzard and EA Games. I want to show on Blizzard subsite latest active topics from specific section on main site forum.
Please help me
Disable any bbpress related, not the actual, plugins. I had several and problem resolved by disabling plugins. Possibly bbPress2 BBCode, bbPress Threaded Replies, or bbPress Topics for Posts.
We’ve made what you described into a Plugin. At least a good chunk of it – will keep you posted
nevermind:) figured it out:)
i used:
border-collapse: collapse;
border-spacing:0;
and no more borders
thanks for your reply, however viewing all of these I did not see one of the bbPress widgets that displays the Topic headlines from a specified Forum, could you point me in the right direction.
I found a workaround for displaying a Twitter Tweet Me button inside individual topics on bbPress 2.0 and using WP 3.x.
Open up: wp-content/plugins/bbpress/bbp-includes/bb_user_template.php
Under // Default arguments on line 451 after: ‘after’ => ‘)<include tweet me js script here>
The above will display your twitter button directly under the topic posters name/ip address (if enabled). Use line breaks as needed.
This is likely not the best solution, but given the utter arse-circus of using bbpress plugin, and a bbpress template, and since support is very limited for bbpress, this might work for you as well.
See it in action here: http://alienlikeproductions.com/forums/topic/welcome-to-the-end-of-our-age/
im using the latest bbpress plugin for wordpress.. and the table borders is making my forum look not so pretty.. any help/suggestions?
Thanks!
Something custom will need to be coded up. Nothing exists for bbPress that I’m aware of.
If you can point me to a more specific problem, a plugin, a specific issue, I’m happy to help.
When I open it in my css editor I get this
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>403 Forbidden</title>
</head><body>
<h1>Forbidden</h1>
<p>You don't have permission to access /wp-content/plugins/bbpress/bbp-themes/bbp-twentyten/css/bbpress.css
on this server.</p>
<hr>
<address>Apache/2.0.54 Server at rockymtb.org Port 80</address>
</body></html>
I felt the same way at first when I found WordPress, but check out how the functions work and what you can pass into them. Most of them accept a before and after attribute so you can customize the output.
I would like the Tweet button to display on the bottom of submitted topics. I’ve tried several methods, but I can’t seem to place any code inside of topic content.
How do I expand on the topic hook to automatically place code into any submitted topic?
I would even be ok with placing the button outside of the topic, like the container, but I have been unable to do this. I am using the plugin, as well as a BBPress ready theme, so I have been hacking both trying to figure out how to get the desired code into topics.
If you absolutely must have a page there, you’ll want to use Shortcodes or a custom page template of your coding to customize it.
You’ll probably need to hook a custom function ithat you create nto one of the actions in the template files, depending on where you want the code to appear.
Don’t use the Shortcodes, just use the widget already supplied by bbPress.