<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
		>
	<channel>
		<title>bbPress Support Forums &#187; Tag: bbPress - Recent Posts</title>
		<link>http://bbpress.org/forums/tags/bbpress</link>
		<description>bbPress Support Forums &#187; Tag: bbPress - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Fri, 25 May 2012 14:54:01 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/forums/rss/tags/bbpress" rel="self" type="application/rss+xml" />

		<item>
			<title>ketnoimang on "Adding Post Count / Etc. to BBPress Plugin"</title>
			<link>http://bbpress.org/forums/topic/adding-post-count-etc-to-bbpress-plugin#post-103214</link>
			<pubDate>Fri, 25 May 2012 08:57:12 +0000</pubDate>
			<dc:creator>ketnoimang</dc:creator>
			<guid isPermaLink="false">103214@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>This Topic is userful for everyone! ThankS!<br />
View my website:<br />
<a href="http://thietbimang.net/3g-router-bo-phat-3g-wifi-dm246.html" rel="nofollow">http://thietbimang.net/3g-router-bo-phat-3g-wifi-dm246.html</a>
</p>]]></description>
					</item>
		<item>
			<title>New Joerg on "Changes in visibility destroy Forum"</title>
			<link>http://bbpress.org/forums/topic/changes-in-visibility-destroy-forum#post-103192</link>
			<pubDate>Thu, 24 May 2012 21:54:07 +0000</pubDate>
			<dc:creator>New Joerg</dc:creator>
			<guid isPermaLink="false">103192@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>As long as the forum is visible, it seems to work. Once the forum is set to "private" entries are only visible to admin. Registered users can't even see their own posts. This remains true even when the forum will be switched back to "public". The forum is here: <a href="http://zukunft-stadtbahn.de/forums/forum/redaktionsbesprechung/" rel="nofollow">http://zukunft-stadtbahn.de/forums/forum/redaktionsbesprechung/</a><br />
It is public and anonymous posts are allowed.The basic settings were not changed. WordPress 3.3.2 and bbPress 2.0.2. Grateful for any help.<br />
Jörg
</p>]]></description>
					</item>
		<item>
			<title>StephAO on "bbPress 2.0 - Theme Compatibility"</title>
			<link>http://bbpress.org/forums/topic/bbpress-20-theme-compatibility/page/5#post-103189</link>
			<pubDate>Thu, 24 May 2012 20:02:59 +0000</pubDate>
			<dc:creator>StephAO</dc:creator>
			<guid isPermaLink="false">103189@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>no the good forum. sorry
</p>]]></description>
					</item>
		<item>
			<title>Lynq on "Layout bbPress as Invision or phpBB or vBulletin"</title>
			<link>http://bbpress.org/forums/topic/layout-bbpress-as-invision-or-phpbb-or-vbulletin#post-102965</link>
			<pubDate>Fri, 18 May 2012 14:48:55 +0000</pubDate>
			<dc:creator>Lynq</dc:creator>
			<guid isPermaLink="false">102965@http://bbpress.org/forums/</guid>
			<description><![CDATA[<pre><code>function bbp_list_forums( $args = &#039;&#039; ) {

	// Define used variables
	$output = $sub_forums = $topic_count = $reply_count = $counts = &#039;&#039;;
	$i = 0;
	$count = array();

	// Defaults and arguments
	$defaults = array (
		&#039;before&#039;              =&#62; &#039;&#60;ul class=&#34;bbp-forums&#34;&#62;&#039;,
		&#039;after&#039;               =&#62; &#039;&#60;/ul&#62;&#039;,
		&#039;link_before&#039;         =&#62; &#039;&#60;li class=&#34;bbp-forum&#34;&#62;&#039;,
		&#039;link_after&#039;          =&#62; &#039;&#60;/li&#62;&#039;,
		&#039;count_before&#039;        =&#62; &#039; (&#039;,
		&#039;count_after&#039;         =&#62; &#039;)&#039;,
		&#039;count_sep&#039;           =&#62; &#039;, &#039;,
		&#039;separator&#039;           =&#62; &#039;, &#039;,
		&#039;forum_id&#039;            =&#62; &#039;&#039;,
		&#039;show_topic_count&#039;    =&#62; true,
		&#039;show_reply_count&#039;    =&#62; true,
		&#039;freshness_before&#039;    =&#62; &#039;&#60;td class=&#34;last-posted-box&#34;&#62;&#039;,
		&#039;freshness_after&#039;     =&#62; &#039;&#60;/td&#62;&#039;,
		&#039;show_freshness_link&#039; =&#62; true,
		&#039;freshness_author_before&#039;    =&#62; &#039;&#60;div class=&#34;author-box&#34;&#62;&#039;,
		&#039;freshness_author_after&#039;     =&#62; &#039;&#60;/div&#62;&#039;
		);
	$r = wp_parse_args( $args, $defaults );
	extract( $r, EXTR_SKIP );

	// Bail if there are no subforums
	if ( !bbp_get_forum_subforum_count( $forum_id ) )
		return;

	// Loop through forums and create a list
	if ( $sub_forums = bbp_forum_get_subforums( $forum_id ) ) {

		// Total count (for separator)
		$total_subs = count( $sub_forums );
		foreach ( $sub_forums as $sub_forum ) {
			$i++; // Separator count

			// Get forum details
			$count     = array();
			$show_sep  = $total_subs &#62; $i ? $separator : &#039;&#039;;
			$permalink = bbp_get_forum_permalink( $sub_forum-&#62;ID );
			$title     = bbp_get_forum_title( $sub_forum-&#62;ID );

			// Show topic count
			if ( !empty( $show_topic_count ) &#38;&#38; !bbp_is_forum_category( $sub_forum-&#62;ID ) )
				$count[&#039;topic&#039;] = bbp_get_forum_topic_count( $sub_forum-&#62;ID );

			// Show reply count
			if ( !empty( $show_reply_count ) &#38;&#38; !bbp_is_forum_category( $sub_forum-&#62;ID ) )
				$count[&#039;reply&#039;] = bbp_get_forum_reply_count( $sub_forum-&#62;ID );

			// Counts to show
			if ( !empty( $count ) )
				$counts = $count_before . implode( $count_sep, $count ) . $count_after;

			// Show topic count
			if ( !empty( $show_freshness_link ) &#38;&#38; !bbp_is_forum_category( $sub_forum-&#62;ID ) ) {
				$freshness_link = bbp_get_forum_freshness_link( $sub_forum-&#62;ID );
				$freshness_author = $freshness_author_before . bbp_get_author_link( array( &#039;post_id&#039; =&#62; bbp_get_forum_last_active_id( $sub_forum-&#62;ID ), &#039;size&#039; =&#62; 14 ) ) . $freshness_author_after;
				$freshness_link = $freshness_before . $freshness_link . $freshness_author . $freshness_after;
			}

			// Build this sub forums link
			$output .= $link_before . &#039;&#60;a href=&#34;&#039; . $permalink . &#039;&#34; class=&#34;bbp-forum-link&#34;&#62;&#039; . $title . $counts . $freshness_link . &#039;&#60;/a&#62;&#039; . $show_sep . $link_after;
		}

		// Output the list
		echo $before . $output . $after;
	}
}</code></pre>
<p>This will give you more control over creating a theme which looks like Invision or PHPBB.</p>
<p>You will have to customize your theme as well to make sure it is compatible.
</p>]]></description>
					</item>
		<item>
			<title>Lynq on "Layout bbPress as Invision or phpBB or vBulletin"</title>
			<link>http://bbpress.org/forums/topic/layout-bbpress-as-invision-or-phpbb-or-vbulletin#post-102883</link>
			<pubDate>Thu, 17 May 2012 13:52:13 +0000</pubDate>
			<dc:creator>Lynq</dc:creator>
			<guid isPermaLink="false">102883@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hey guys,</p>
<p>I have been searching for this myself aswell, but couldn't find anything anywhere.</p>
<p>If anyone is interested I modified the bbp_list_forums function to have a flag for freshness (last poster) to be displayed or not.</p>
<pre><code>function bbp_list_forums( $args = &#039;&#039; ) {

	// Define used variables
	$output = $sub_forums = $topic_count = $reply_count = $counts = &#039;&#039;;
	$i = 0;
	$count = array();

	// Defaults and arguments
	$defaults = array (
		&#039;before&#039;              =&#62; &#039;&#60;ul class=&#34;bbp-forums&#34;&#62;&#039;,
		&#039;after&#039;               =&#62; &#039;&#60;/ul&#62;&#039;,
		&#039;link_before&#039;         =&#62; &#039;&#60;li class=&#34;bbp-forum&#34;&#62;&#039;,
		&#039;link_after&#039;          =&#62; &#039;&#60;/li&#62;&#039;,
		&#039;count_before&#039;        =&#62; &#039; (&#039;,
		&#039;count_after&#039;         =&#62; &#039;)&#039;,
		&#039;count_sep&#039;           =&#62; &#039;, &#039;,
		&#039;separator&#039;           =&#62; &#039;, &#039;,
		&#039;forum_id&#039;            =&#62; &#039;&#039;,
		&#039;show_topic_count&#039;    =&#62; true,
		&#039;show_reply_count&#039;    =&#62; true,
		&#039;freshness_before&#039;    =&#62; &#039;&#60;td&#62;&#039;,
		&#039;freshness_after&#039;     =&#62; &#039;&#60;/td&#62;&#039;,
		&#039;show_freshness_link&#039; =&#62; true
	);
	$r = wp_parse_args( $args, $defaults );
	extract( $r, EXTR_SKIP );

	// Bail if there are no subforums
	if ( !bbp_get_forum_subforum_count( $forum_id ) )
		return;

	// Loop through forums and create a list
	if ( $sub_forums = bbp_forum_get_subforums( $forum_id ) ) {

		// Total count (for separator)
		$total_subs = count( $sub_forums );
		foreach ( $sub_forums as $sub_forum ) {
			$i++; // Separator count

			// Get forum details
			$count     = array();
			$show_sep  = $total_subs &#62; $i ? $separator : &#039;&#039;;
			$permalink = bbp_get_forum_permalink( $sub_forum-&#62;ID );
			$title     = bbp_get_forum_title( $sub_forum-&#62;ID );

			// Show topic count
			if ( !empty( $show_topic_count ) &#38;&#38; !bbp_is_forum_category( $sub_forum-&#62;ID ) )
				$count[&#039;topic&#039;] = bbp_get_forum_topic_count( $sub_forum-&#62;ID );

			// Show reply count
			if ( !empty( $show_reply_count ) &#38;&#38; !bbp_is_forum_category( $sub_forum-&#62;ID ) )
				$count[&#039;reply&#039;] = bbp_get_forum_reply_count( $sub_forum-&#62;ID );

			// Counts to show
			if ( !empty( $count ) )
				$counts = $count_before . implode( $count_sep, $count ) . $count_after;

			// Show topic count
			if ( !empty( $show_freshness_link ) &#38;&#38; !bbp_is_forum_category( $sub_forum-&#62;ID ) ) {
				$freshness_link = bbp_get_forum_freshness_link( $sub_forum-&#62;ID );
				$freshness_link = $freshness_before . $freshness_link . $freshness_after;
			}

			// Build this sub forums link
			$output .= $link_before . &#039;&#60;a href=&#34;&#039; . $permalink . &#039;&#34; class=&#34;bbp-forum-link&#34;&#62;&#039; . $title . $counts . $freshness_link . &#039;&#60;/a&#62;&#039; . $show_sep . $link_after;
		}

		// Output the list
		echo $before . $output . $after;
	}
}</code></pre>
<p>Let me know if you would like any help with I am currently customising my theme to work with it, you will need to add an extra th to your forum tables other you just have a blank in place.</p>
<p>Hope someone finds this helpful!</p>
<p>p.s. you can also specify a before and after in the arguments of bbp_list_forums.</p>
<p>All the best.<br />
Lynq.
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "Adding Post Count / Etc. to BBPress Plugin"</title>
			<link>http://bbpress.org/forums/topic/adding-post-count-etc-to-bbpress-plugin#post-102854</link>
			<pubDate>Wed, 16 May 2012 20:44:02 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">102854@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I hear you. I often forget that everyone else isn't using 2.1. It will be out soon though and then we will start work on 2.2 :)
</p>]]></description>
					</item>
		<item>
			<title>LIB53 on "Adding Post Count / Etc. to BBPress Plugin"</title>
			<link>http://bbpress.org/forums/topic/adding-post-count-etc-to-bbpress-plugin#post-102851</link>
			<pubDate>Wed, 16 May 2012 18:54:44 +0000</pubDate>
			<dc:creator>LIB53</dc:creator>
			<guid isPermaLink="false">102851@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Ah I see, thank you for the link. I guess I'll keep any work I do to myself then, it's a learning experience for me. Too bad it got punted to 2.2 though, I'm already feeling really excited and impatient for 2.1 hehe
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "Adding Post Count / Etc. to BBPress Plugin"</title>
			<link>http://bbpress.org/forums/topic/adding-post-count-etc-to-bbpress-plugin#post-102850</link>
			<pubDate>Wed, 16 May 2012 17:52:52 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">102850@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>bbPress is going to handle all of this fully in core soon (likely in 2.2).</p>
<p>Check out <a href="http://bbpress.trac.wordpress.org/ticket/1694" rel="nofollow">http://bbpress.trac.wordpress.org/ticket/1694</a> for more details.
</p>]]></description>
					</item>
		<item>
			<title>LIB53 on "Adding Post Count / Etc. to BBPress Plugin"</title>
			<link>http://bbpress.org/forums/topic/adding-post-count-etc-to-bbpress-plugin#post-102846</link>
			<pubDate>Wed, 16 May 2012 16:24:24 +0000</pubDate>
			<dc:creator>LIB53</dc:creator>
			<guid isPermaLink="false">102846@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I'm making a post count plugin for bbpress 2.1, but the problem is that I'm new to PHP/MySQL, WordPress, and bbPress. From what I understand, I need to add a row called 'post count' to the usermeta table and hook the 'bbp_theme_after_reply_form_submit_button' action hook with a function that increases 'post count' by 1. I believe I must assign this newly hooked action a low priority as well so that the increase only comes after the post gets submitted into the database.</p>
<p>I should also add a function that builds all post counts for first time run, and even leave a button possibly called "rebuild post count" in the dashboard to run the function. Preferably, I'd like to add a feature where it can run itself every now and then to ensure things the posts are accurate.<br />
I can count up everyone's post count by filtering through the 'posts' table. All replies and topics are labeled as  'reply' and 'topic' in the post_type column, and there is a post_author column as well. Given these two columns, writing this function should be very simple. But I'm new to PHP/MySQL, and only a computer science student... So even this is a bit of work for me :(</p>
<p>Additionally, I can add another row so we can add artificial post count increase or decrease as well. Another row is needed because we don't want the build/rebuild post count function mentioned above overwriting any increase or decrease an admin wants to have in effect. I personally need this row because I'm moving a 2yr old community off of IPB.
</p>]]></description>
					</item>
		<item>
			<title>Milan Petrovic on "GD bbPress Attachments"</title>
			<link>http://bbpress.org/forums/topic/gd-bbpress-attachments#post-102839</link>
			<pubDate>Wed, 16 May 2012 08:54:32 +0000</pubDate>
			<dc:creator>Milan Petrovic</dc:creator>
			<guid isPermaLink="false">102839@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Plugin has been updated many times, and latest version is 1.8:</p>
<p><a href="http://www.dev4press.com/2012/blog/plugins-news/gd-bbpress-attachments-1-8/" rel="nofollow">http://www.dev4press.com/2012/blog/plugins-news/gd-bbpress-attachments-1-8/</a></p>
<p>Milan
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "Adding Post Count / Etc. to BBPress Plugin"</title>
			<link>http://bbpress.org/forums/topic/adding-post-count-etc-to-bbpress-plugin#post-102778</link>
			<pubDate>Mon, 14 May 2012 20:53:29 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">102778@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Not at the moment but post counts will probably make an appearance in 2.2.
</p>]]></description>
					</item>
		<item>
			<title>John James Jacoby on "bbPress 2.1 - Theme Compatibility"</title>
			<link>http://bbpress.org/forums/topic/bbpress-21-theme-compatibility/page/2#post-102732</link>
			<pubDate>Mon, 14 May 2012 00:08:19 +0000</pubDate>
			<dc:creator>John James Jacoby</dc:creator>
			<guid isPermaLink="false">102732@http://bbpress.org/forums/</guid>
			<description><![CDATA[<blockquote><p>How can i disable HTML and/or VISUAL editor? (2.1 plugin version)
</p></blockquote>
<p>Have you tried Settings &#62; Forum? :)</p>
<p>Unless you're talking about conditionally toggling the mode, in which case you're on your own to build that as a plugin, similar to WordPress.
</p>]]></description>
					</item>
		<item>
			<title>frmwp on "bbPress 2.1 - Theme Compatibility"</title>
			<link>http://bbpress.org/forums/topic/bbpress-21-theme-compatibility/page/2#post-102710</link>
			<pubDate>Sat, 12 May 2012 20:32:34 +0000</pubDate>
			<dc:creator>frmwp</dc:creator>
			<guid isPermaLink="false">102710@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>How can i disable HTML and/or VISUAL editor? (2.1 plugin version)
</p>]]></description>
					</item>
		<item>
			<title>neodoxa on "Adding Post Count / Etc. to BBPress Plugin"</title>
			<link>http://bbpress.org/forums/topic/adding-post-count-etc-to-bbpress-plugin#post-102650</link>
			<pubDate>Thu, 10 May 2012 20:09:48 +0000</pubDate>
			<dc:creator>neodoxa</dc:creator>
			<guid isPermaLink="false">102650@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Is there a way to add total post count and roles (moderator, etc.) under the avatars/usernames of users in the forum? </p>
<p>I'm using the BBPress plugin with a Buddypress / WordPress site. </p>
<p>Thanks.
</p>]]></description>
					</item>
		<item>
			<title>damjtoh on "Layout bbPress as Invision or phpBB or vBulletin"</title>
			<link>http://bbpress.org/forums/topic/layout-bbpress-as-invision-or-phpbb-or-vbulletin#post-102538</link>
			<pubDate>Mon, 07 May 2012 22:59:58 +0000</pubDate>
			<dc:creator>damjtoh</dc:creator>
			<guid isPermaLink="false">102538@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I edit the template.php bbp-forum, although I do not sound right to modify the core.</p>
<p>I changed bbp_list_forums function () original:<br />
<code><br />
function bbp_list_forums( $args = '' ) {<br />
[...]<br />
			// Build this sub forums link<br />
			$output .= $link_before . '<a href="' . $permalink . '">' . $title . $counts . '</a>' . $show_sep . $link_after;<br />
		}</p>
<p>		// Output the list<br />
		echo $before . $output . $after;<br />
	}<br />
}<br />
</code><br />
by:<br />
<code><br />
function bbp_list_forums( $args = '' ) {<br />
[...]<br />
			// Build this sub forums link<br />
			//$output .= $link_before . '<a href="' . $permalink . '">' . $title . $counts . '</a>' . $show_sep . $link_after;<br />
			$output[] = array(<br />
			'permalink'=&#62;$permalink,<br />
			'title'=&#62;$title,<br />
			'count'=&#62;$count<br />
			);<br />
		}</p>
<p>		// Output the list<br />
		return $output;<br />
	}<br />
}<br />
</code><br />
and I returned:<br />
<code><br />
Array<br />
(<br />
    [0] =&#62; Array<br />
        (<br />
            [permalink] =&#62; <a href="http://localhost/wpv1/foros/seccion/dota2/torneos-y-competencias" rel="nofollow">http://localhost/wpv1/foros/seccion/dota2/torneos-y-competencias</a><br />
            [title] =&#62; Torneos y competencias<br />
            [count] =&#62; Array<br />
                (<br />
                    [topic] =&#62; 1<br />
                    [reply] =&#62; 5<br />
                )</p>
<p>        )</p>
<p>    [1] =&#62; Array<br />
        (<br />
            [permalink] =&#62; <a href="http://localhost/wpv1/foros/seccion/dota2/dota-chat" rel="nofollow">http://localhost/wpv1/foros/seccion/dota2/dota-chat</a><br />
            [title] =&#62; Dota chat<br />
            [count] =&#62; Array<br />
                (<br />
                    [topic] =&#62; 0<br />
                    [reply] =&#62; 0<br />
                )</p>
<p>        )</p>
<p>)<br />
</code></p>
<p>The only drawback is that I can not get the last comment of each forum.
</p>]]></description>
					</item>
		<item>
			<title>landonritchie on "[resolved] [Resolved] BBPress signatures with Buddypress"</title>
			<link>http://bbpress.org/forums/topic/resolved-bbpress-signatures-with-buddypress#post-102528</link>
			<pubDate>Mon, 07 May 2012 19:01:46 +0000</pubDate>
			<dc:creator>landonritchie</dc:creator>
			<guid isPermaLink="false">102528@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Ok found a good fix for this!</p>
<p>in bbp_signature.php</p>
<p>in function bbp_reply_content_append_user_signature &#38; function bbp_topic_content_append_user_signature</p>
<p>change</p>
<p>$signature = bbp_get_user_signature ( $user_id );</p>
<p>to</p>
<p>$signature = xprofile_get_field_data( 'Signature', $user_id );</p>
<p>Then in Buddypress profile fields add a field called Signature.</p>
<p>Bam fixed.</p>
<p>I even went ahead and added a bbcode parser to the plugin so it works real nice. you can download the full fix here</p>
<p><a href="http://vigilsoft.net/bbp-signature_buddypress_edition.zip" rel="nofollow">http://vigilsoft.net/bbp-signature_buddypress_edition.zip</a>
</p>]]></description>
					</item>
		<item>
			<title>survivalbill-2 on "bbPress 2.1 - Theme Compatibility"</title>
			<link>http://bbpress.org/forums/topic/bbpress-21-theme-compatibility/page/2#post-102527</link>
			<pubDate>Mon, 07 May 2012 18:59:15 +0000</pubDate>
			<dc:creator>survivalbill-2</dc:creator>
			<guid isPermaLink="false">102527@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>yes I want mine to look like yours what did you do to get it like that?</p>
<p>the layout it did on mine is just stupid any idea on how to get it to look like yours?
</p>]]></description>
					</item>
		<item>
			<title>guy2131 on "bbPress 2.1 - Theme Compatibility"</title>
			<link>http://bbpress.org/forums/topic/bbpress-21-theme-compatibility/page/2#post-102524</link>
			<pubDate>Mon, 07 May 2012 17:47:53 +0000</pubDate>
			<dc:creator>guy2131</dc:creator>
			<guid isPermaLink="false">102524@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Looks alright to me @survivalbill-2. I use bbpress on my site <a href="http://www.ibikiniwax.com/forum" rel="nofollow">http://www.ibikiniwax.com/forum</a> and it looks similar to yours - do you mean the layout or the list of Forums up top?
</p>]]></description>
					</item>
		<item>
			<title>survivalbill-2 on "bbPress 2.1 - Theme Compatibility"</title>
			<link>http://bbpress.org/forums/topic/bbpress-21-theme-compatibility/page/2#post-102489</link>
			<pubDate>Mon, 07 May 2012 04:04:34 +0000</pubDate>
			<dc:creator>survivalbill-2</dc:creator>
			<guid isPermaLink="false">102489@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I have put this in to a post.</p>
<p>[bbp-forum-index]&#60;-Must be something wrong this can not be the way the forums look I am using the Twenty Eleven 1.3 and bbpress Version 2.0.2 everything is up to date what do I do to fix this forum listing so that it looks like a normal forum?</p>
<p><a href="http://www.school.survivalbill.ca/?page_id=334" rel="nofollow">http://www.school.survivalbill.ca/?page_id=334</a></p>
<p>[bbp-topic-index] &#60;-this I dont want just have it up to see what it looks like
</p>]]></description>
					</item>
		<item>
			<title>Sniper Kitten on "Trying to install Site Wide Forums on BuddyPress Default 1.5.5 by the BuddyPress"</title>
			<link>http://bbpress.org/forums/topic/trying-to-install-site-wide-forums-on-buddypress-default-155-by-the-buddypress#post-102488</link>
			<pubDate>Mon, 07 May 2012 03:58:45 +0000</pubDate>
			<dc:creator>Sniper Kitten</dc:creator>
			<guid isPermaLink="false">102488@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>What are your hosts using as web hosting control panels? cPanel, vDeck or something else?</p>
<p>Take me as an example (I'm using vDeck 4), in your control panel, navigate to "File Manager" (or similar name). If your install your website in root directory, then navigate to /wp-content/plugins/ and upload your bbPress zip file there. For sub-directory, navigate to /"sub-directory"/wp-content/plugins/ and upload it there. Uncompress the zip file.<br />
In your wordpress dashboard, go to Plugin section. You should see the bbPress in your plugin list. Activate it and you're done.</p>
<p>Actually there's an easier way to do this. Navigate to Plugin &#62; Add New. Search for bbPress and click "install now" and activate it.</p>
<p>You can also refer:<br />
<a href="http://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/2/#bp-sitewide-forums" rel="nofollow">http://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/2/#bp-sitewide-forums</a>
</p>]]></description>
					</item>
		<item>
			<title>Jelle Geerdink on "bbPress 2.0/2.1 and groups in Buddypress"</title>
			<link>http://bbpress.org/forums/topic/bbpress-20-and-groups-in-buddypress#post-102469</link>
			<pubDate>Sun, 06 May 2012 16:23:19 +0000</pubDate>
			<dc:creator>Jelle Geerdink</dc:creator>
			<guid isPermaLink="false">102469@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Will there be any solution for my problem?
</p>]]></description>
					</item>
		<item>
			<title>CIVIC on "Trying to install Site Wide Forums on BuddyPress Default 1.5.5 by the BuddyPress"</title>
			<link>http://bbpress.org/forums/topic/trying-to-install-site-wide-forums-on-buddypress-default-155-by-the-buddypress#post-102462</link>
			<pubDate>Sun, 06 May 2012 02:53:16 +0000</pubDate>
			<dc:creator>CIVIC</dc:creator>
			<guid isPermaLink="false">102462@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi, when I installed my Site Wide forum I saw this, "■Place the 'bbpress' folder in your '/wp-content/plugins/' directory."<br />
But, have no idea how to ■Place the 'bbpress' folder in your '/wp-content/plugins/' directory. Any advice?
</p>]]></description>
					</item>
		<item>
			<title>wantei on "How do i set up bbpress and buddypress?"</title>
			<link>http://bbpress.org/forums/topic/how-do-i-set-up-bbpress-and-buddypress#post-102459</link>
			<pubDate>Sat, 05 May 2012 12:46:54 +0000</pubDate>
			<dc:creator>wantei</dc:creator>
			<guid isPermaLink="false">102459@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>My forums keeps messing up when I include both BuddyPress and bbPress how can i fix this at my website <a href="http://wanani.me" rel="nofollow">http://wanani.me</a> ?? Please help me out!
</p>]]></description>
					</item>
		<item>
			<title>tate83 on "Introducing bbConverter - Convert your current forums for use with bbPress 2x"</title>
			<link>http://bbpress.org/forums/topic/introducing-bbconverter-convert-your-current-forums-for-use-with-bbpress-2x/page/7#post-102423</link>
			<pubDate>Fri, 04 May 2012 15:27:41 +0000</pubDate>
			<dc:creator>tate83</dc:creator>
			<guid isPermaLink="false">102423@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi<br />
Love the plugin. But are the phpBB image/URL trouble's going to be resolved somewhen? There isn't much acitivity any more..</p>
<p>Cheers<br />
Tate
</p>]]></description>
					</item>
		<item>
			<title>feedmymedia on "ERROR: Forum ID is missing."</title>
			<link>http://bbpress.org/forums/topic/error-forum-id-is-missing#post-102421</link>
			<pubDate>Fri, 04 May 2012 14:02:55 +0000</pubDate>
			<dc:creator>feedmymedia</dc:creator>
			<guid isPermaLink="false">102421@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi</p>
<p>We have activated the BBpress plugin and configured forums on three of our demo sites, but when we attempt to add a new topic in the front end, it displays the following error message:</p>
<p><strong>ERROR: Forum ID is missing.</strong></p>
<p>Here is a link to one the sites' forum landing pages:<br />
<a href="http://thestandard.feedmydemo.co.za/forums/" rel="nofollow">http://thestandard.feedmydemo.co.za/forums/</a></p>
<p>Any help or suggestions would be greatly appreciated.
</p>]]></description>
					</item>
		<item>
			<title>spiritfly on "Layout bbPress as Invision or phpBB or vBulletin"</title>
			<link>http://bbpress.org/forums/topic/layout-bbpress-as-invision-or-phpbb-or-vbulletin#post-102418</link>
			<pubDate>Fri, 04 May 2012 13:19:26 +0000</pubDate>
			<dc:creator>spiritfly</dc:creator>
			<guid isPermaLink="false">102418@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I can't believe this still haven't been resolved. What is going on with the bbpress community? This is a must have. It should be the forums default looks.</p>
<p>I have tried playing with it, but I still don't understand what really is going on. </p>
<p>Can someone who made these kind of subcategories post the changes he made?</p>
<p>Thanks
</p>]]></description>
					</item>
		<item>
			<title>Jelle Geerdink on "bbPress 2.0/2.1 and groups in Buddypress"</title>
			<link>http://bbpress.org/forums/topic/bbpress-20-and-groups-in-buddypress#post-102354</link>
			<pubDate>Thu, 03 May 2012 16:29:23 +0000</pubDate>
			<dc:creator>Jelle Geerdink</dc:creator>
			<guid isPermaLink="false">102354@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thanks a lot sniperkitten. The futures from bbPress 2+ are exactly what I need, not the futures from the bbPress that comes with Buddypress. But there wouldn't come a possibility that the group forums of Buddypress are compatible with bbPress 2+?
</p>]]></description>
					</item>
		<item>
			<title>Sniper Kitten on "bbPress 2.0/2.1 and groups in Buddypress"</title>
			<link>http://bbpress.org/forums/topic/bbpress-20-and-groups-in-buddypress#post-102351</link>
			<pubDate>Thu, 03 May 2012 16:05:38 +0000</pubDate>
			<dc:creator>Sniper Kitten</dc:creator>
			<guid isPermaLink="false">102351@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>bbPress 2.1 do have a "Group Forums" feature, where you can create a forums that's specific to that groups that will show up in the bbPress list but not the Group Forums list that comes with BuddyPress . But keep it mind that it's still under development.</p>
<p>Actually, the Group Forums comes with BuddyPress is also using the bbpress, just with some differences.
</p>]]></description>
					</item>
		<item>
			<title>Jelle Geerdink on "bbPress 2.0/2.1 and groups in Buddypress"</title>
			<link>http://bbpress.org/forums/topic/bbpress-20-and-groups-in-buddypress#post-102344</link>
			<pubDate>Thu, 03 May 2012 15:07:56 +0000</pubDate>
			<dc:creator>Jelle Geerdink</dc:creator>
			<guid isPermaLink="false">102344@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>When will bbPress 2.0 integrate with Groups in Buddypress?
</p>]]></description>
					</item>
		<item>
			<title>Sniper Kitten on "How to make bbPress Full Page Width?"</title>
			<link>http://bbpress.org/forums/topic/how-to-make-bbpress-full-page-width#post-102341</link>
			<pubDate>Thu, 03 May 2012 14:47:15 +0000</pubDate>
			<dc:creator>Sniper Kitten</dc:creator>
			<guid isPermaLink="false">102341@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Unfortunately there's no easy way to do this. You'll need to create a custom template for bbPress. If you have some experience doing PHP then this shouldn't be a problem.</p>
<p>You can refer this topic:<br />
<a href="http://bbpress.org/forums/topic/is-it-possible-to-use-different-template-per-forum" rel="nofollow">http://bbpress.org/forums/topic/is-it-possible-to-use-different-template-per-forum</a>
</p>]]></description>
					</item>

	</channel>
</rss>

