Published on November 6th, 2012 by mrmonkey3319
I love the layout: https://bbpress.org/forums/ The forums on the left, and a big Latest Topics are on the right. Tags and such in the left too. I keep reinstalling my bbPress but no matter what I do, I cannot get my forums to show up like this. See here:
http://covenantvoice.com/forums/
I just want to fix the layout. Any idea on what I’m doing wrong? I’m using the very latest bbPress, 2.1.2.
Published on November 6th, 2012 by Phill
Hi guys,
We’ve recently switched from phpBB3 to BBpress and so far so good. I wanted to personally thank everyone on these forums for their tutorials and hacks that have helped us create the forums we were looking for. I also want to thank all of you that have worked on the BBpress plugin itself. It was difficult at times switching from phpBB3 and customizing BBpress but it was definitely worth it. Our site still has a few bugs like missing Pagination on the Topics pages and missing text when editing replies but those should be fixed soon.
You can check out our new forums at http://ShadowedMare.com/forums.
Thanks again! You guys are great!
Published on November 6th, 2012 by kristinachilds
We are adding forums to an existing site rather than having a site that is 100% forums. I already have a breadcrumb set up for the main site but the forums don’t show up in them. Since the bbPress breadcrumb functions are significantly more complex than the simple breadcrumbs I currently use I decided to use bbPress’ crumbs in place of the main one. I have successfully modified the function to include category and single page data in the crumbs (without having “forums” as the base) but the blog root disappears. Help? Here’s what I added to ** Current Text **
// Category Page
if (is_category() || is_single()) {
the_category(' » ');
if (is_single()) {
echo " » ";
the_title();
}
That omitted the blog root from the crumbs, so I tried this, which didn’t work either.
if (is_category() || is_single()) {
$pre_current_text[] = '<a href="' . trailingslashit( home_url() ) . '">Front Row</a>' . the_category(' » ');
if (is_single()) {
echo " » ";
the_title();
}
I’m not really sure what I’m doing here. I’m no function whiz.
Published on November 6th, 2012 by Arturo
Hi, i’ve a problem with bbpress, on my site buddypress-it.it a member have posted a reply to a topic, the activity with BP is in the activity stream but the post isn’t in the discussion and i don’t have in any bbPress administration area (spam, deleted etc)
the link is: http://www.buddypress-it.it/supporto/topic/schermata-are-you-sure-you-want-to-do-that-wp-nonce/
the activity is on the home page of www.buddypress-it.it with the text: > Francesco Martino ha risposto alla discussione Schermata “Are you sure you want to do that?” wp nonce nel forum forum Come faccio a – Risoluzione Problemi 1 ora, 11 minuti fa Ciao a tutti, ho provato a replicare l’errore tenendo sotto controllo i log di NgNIX (il web server) ma niente… non riporta nessun errore. @Arturo pensi che debba chiedere il controllo di qualche porta […]
can someone help me fix this problem?
this isn’t the first time i see this. thanks!
WP: 3.4.2
bbPress: 2.1.2
BuddyPress: 1.6.1
Published on November 6th, 2012 by Alain RONK
Hello,
Actually, the notification by mail is reserved for registered users.
Is there an option to have email notification for all visitors
who write a response or open a new topic, with the checkbox, please ?
The comment in post or page use this method.
Best regards
Alain
My website : http://www.modelisme-racer.fr
Published on November 5th, 2012 by kristinachilds
I’ve installed this plugin and the admin side works perfectly. I am able to create forums, topics, replies, etc, however it doesn’t not show up on the actual site. At all. Even when I click the “preview forum” or “view forum” buttons, the browser tells me that link doesn’t exist. It’s a 404 error.
I’ve checked all the settings and they are all public and seem to be correct… Though as an admin I should be able to see them all anyway.
I’m on WordPress 3.4.2 with bbPress 2.1.2
Published on November 5th, 2012 by gingerngo
Hi all, I’ve upgraded to bbPress 2.0, which is great. The one thing I’ve noticed though is that the post id’s for my old topics and replies have changed.
For example, in my old version of bbPress, a topic with topic ID #334 now has a post ID of #587. Understandable, with the introduction of custom post types.
But now I can’t actually refer to the old topic or reply id’s anymore without having to do an extra search in the database.
Just wondering if there was a way to re-map all the old topics/replies to automatically forward to the new ones? Or if there is a way to relate the old versions of the posts to the new ones and create a meta key like “old_bbpress_post_id”?
I’m thinking specifically in the case of Google search results, the old forum posts will still show up and won’t be forwarded to the new forum.
Published on November 5th, 2012 by doland
Hi, I’d like to close a topic so that it remains a sticky without accepting replies, but I want it to be clearly legible in regular black. Right now it’s gray and hard to read. How can I do that?
Here it is:
http://10in30.com/Member_Forum/topic/welcome-say-hi-post-your-stats-here/
Published on November 5th, 2012 by ifelseif
I’m currently integrating BBPress into a existing WP site, and am finding myself scratching my head far to often. I think an example will help get my confusion across.
Take for instance within the new theme-compat files; loop-single-reply.php
This file loops out the topic and all replies.
The file pagination-replies.php is also called before and after loop-single.reply.php.
However if I wanted to remove the before action of pagination-replies.php, where is the template file that brings these components together so I can prevent the pagination from being displayed before the loop?
Within loop-single-reply.php there is no call to pagination-replies, so what file is constructing the output?
Thank you
Published on November 5th, 2012 by Keith Kelly
Is there any shortcode that would allow me to display a forum from one of my other sites on a multisite installation?
I was hoping to display the latest topics of a forum from site “X” on site “Y” because they share interests. I am hoping to do that with shortcode and not a theme change because I am using the same theme across all of my sites.