Search Results for 'bbpress'
-
Search Results
-
Topic: Thank you JJ
I just wanted to give a quick shout out to JJ and to say thank you very much for all the help you have been.
I’ve got to say, that JJ really went out of his way this week in helping me with my installation of bbPress. I’m talking a level of help that I would never expect from anyone and it was greatly appreciated.
To many times, especially in this forum, there are just a lot of unhappy people leaving mean messages as they are frustrated with their individual issues. I wanted to take a moment out of my day to publicly say Thank You for all the hard work you do on these forums and this software. There is no way bbPress would be anywhere near what it is today without you and I for one appreciate the hard work you put into this.
Just know your hard work and dedication to this project is appreciated.
I love the layout: http://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.
Topic: The Shadowed Mare Forums
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.
Topic: forum reply not posted
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 http://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.1Topic: Forums not appearing at all
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
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.
Topic: Confused by template system
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
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.