<?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: vbulletin - Recent Posts</title>
		<link>http://bbpress.org/forums/tags/vbulletin</link>
		<description>bbPress Support Forums &#187; Tag: vbulletin - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Fri, 25 May 2012 13:59:57 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/forums/rss/tags/vbulletin" rel="self" type="application/rss+xml" />

		<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>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>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>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>raubin 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-102074</link>
			<pubDate>Thu, 26 Apr 2012 10:59:19 +0000</pubDate>
			<dc:creator>raubin</dc:creator>
			<guid isPermaLink="false">102074@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Any news if the plugin is going to be able to export / import from mybb forums? Need to get away from mybb and love the look of this WP plugin. Thanks in advance.
</p>]]></description>
					</item>
		<item>
			<title>zeaks 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-101734</link>
			<pubDate>Thu, 19 Apr 2012 06:00:59 +0000</pubDate>
			<dc:creator>zeaks</dc:creator>
			<guid isPermaLink="false">101734@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I'm currently using Xenforo, great forum, but I want to have my forums integrated with my site. Glad to hear Xenforo is in added to future options.
</p>]]></description>
					</item>
		<item>
			<title>ExtremeSoccer 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-99934</link>
			<pubDate>Tue, 13 Mar 2012 22:53:31 +0000</pubDate>
			<dc:creator>ExtremeSoccer</dc:creator>
			<guid isPermaLink="false">99934@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>which stylesheet? the one in plugins/bbpress/plugins/themes/twentyten?
</p>]]></description>
					</item>
		<item>
			<title>OC2PS 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-98782</link>
			<pubDate>Thu, 01 Mar 2012 15:06:30 +0000</pubDate>
			<dc:creator>OC2PS</dc:creator>
			<guid isPermaLink="false">98782@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Umm...except that the usernames (in frontend only) appear as imported_username instead of username. Anyone know the fix?
</p>]]></description>
					</item>
		<item>
			<title>OC2PS 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/6#post-98781</link>
			<pubDate>Thu, 01 Mar 2012 13:44:58 +0000</pubDate>
			<dc:creator>OC2PS</dc:creator>
			<guid isPermaLink="false">98781@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Actually, I take that back.</p>
<p>If you click on "Activate Plugin" immediately upon installation from the Add New Plugin area, the plugin does throw up the error</p>
<blockquote><p>The plugin does not have a valid header.</p></blockquote>
<p>However, if I later to to installed plugins, and then click "Activate", then I am able to activate and use the plugin.</p>
<p>I am also happy to report that I was able to successfully convert a phpBB 3.0.9 forum. It's not perfect...I need to fix a few things here or there, but it is good enough...as good as can be expected from a general-purpose automated converter.
</p>]]></description>
					</item>
		<item>
			<title>OC2PS 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/6#post-98780</link>
			<pubDate>Thu, 01 Mar 2012 12:42:29 +0000</pubDate>
			<dc:creator>OC2PS</dc:creator>
			<guid isPermaLink="false">98780@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@JJJ: Which version are you trying?</p>
<p>I am using the latest version of WordPress 3.3.1</p>
<p>I have tried both bbPress 2.0 and 2.0.2</p>
<p>I installed bbConverter through WP's admin panel so the plugin version is 1.3</p>
<p>When I click Activate immediately upon installation, I get<br />
The plugin does not have a valid header.
</p>]]></description>
					</item>
		<item>
			<title>OAEErra 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/6#post-98630</link>
			<pubDate>Mon, 27 Feb 2012 21:59:52 +0000</pubDate>
			<dc:creator>OAEErra</dc:creator>
			<guid isPermaLink="false">98630@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hey guys, just a thought - is it possible to convert BBPress 2.0 threads and posts back to v1.X in any way?
</p>]]></description>
					</item>
		<item>
			<title>John James Jacoby 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/6#post-98622</link>
			<pubDate>Mon, 27 Feb 2012 16:15:35 +0000</pubDate>
			<dc:creator>John James Jacoby</dc:creator>
			<guid isPermaLink="false">98622@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Works for me.
</p>]]></description>
					</item>
		<item>
			<title>OC2PS 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/6#post-98583</link>
			<pubDate>Sun, 26 Feb 2012 15:29:36 +0000</pubDate>
			<dc:creator>OC2PS</dc:creator>
			<guid isPermaLink="false">98583@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Does not install.</p>
<blockquote><p>The plugin does not have a valid header.</p></blockquote>]]></description>
					</item>
		<item>
			<title>OC2PS 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-98227</link>
			<pubDate>Fri, 17 Feb 2012 08:31:34 +0000</pubDate>
			<dc:creator>OC2PS</dc:creator>
			<guid isPermaLink="false">98227@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Just add<br />
<code>.bbp-forum-info .bbp-forums li {display:block;}</code><br />
to your stylesheet
</p>]]></description>
					</item>
		<item>
			<title>Arvid on "Why bbPress sucks!"</title>
			<link>http://bbpress.org/forums/topic/why-bbpress-sucks#post-98213</link>
			<pubDate>Fri, 17 Feb 2012 01:21:04 +0000</pubDate>
			<dc:creator>Arvid</dc:creator>
			<guid isPermaLink="false">98213@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Some pretty neat ideas! Partcular thumbs up for <a href="http://trac.bbpress.org/ticket/3">#3</a> (official migration tool) <a href="http://trac.bbpress.org/ticket/7">#7</a> (forum sidebar) <a href="http://trac.bbpress.org/ticket/9">#9</a> (custom header code) <a href="http://trac.bbpress.org/ticket/10">#10</a> (standalone package)</p>
<p>I just noticed that the "Docs" tab above has a different destination <a href="http://codex.bbpress.org/" rel="nofollow">http://codex.bbpress.org/</a></p>
<p>On the page it says "you are welcome and invited to modify any of the pages you see here."</p>
<p>Question is - how? I don't see any "Edit" links on any of the pages...
</p>]]></description>
					</item>
		<item>
			<title>Aemi 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-98212</link>
			<pubDate>Fri, 17 Feb 2012 01:03:43 +0000</pubDate>
			<dc:creator>Aemi</dc:creator>
			<guid isPermaLink="false">98212@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>hey, so all we need is to edit bbp_list_forums function?</p>
<p>can someone explain what exactly to do please?
</p>]]></description>
					</item>
		<item>
			<title>OC2PS 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/6#post-98208</link>
			<pubDate>Fri, 17 Feb 2012 00:46:33 +0000</pubDate>
			<dc:creator>OC2PS</dc:creator>
			<guid isPermaLink="false">98208@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@ebiznet88:</p>
<blockquote><p>I'm checking out another possible solution to bridge phpBB3 to WP. Its a plugin available at <a href="http://wordpress.org/extend/plugins/wp-phpbb-bridge/" rel="nofollow">http://wordpress.org/extend/plugins/wp-phpbb-bridge/</a></p></blockquote>
<p>Interesting.</p>
<p>But it sucks that in this plugin user management has been given to phpBB. WordPress has many more interesting options, like FB/Google/Twitter login, etc.</p>
<p>@ebiznet88: Hard Seat Sleeper is on topic and talking about bbConverter
</p>]]></description>
					</item>
		<item>
			<title>ebiznet88 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/6#post-98195</link>
			<pubDate>Thu, 16 Feb 2012 09:13:15 +0000</pubDate>
			<dc:creator>ebiznet88</dc:creator>
			<guid isPermaLink="false">98195@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hard Seat Sleeper, are you referring to Anointed and AWJunkies, or the phpBB-WP bridge fellows whose link I shared in my post? </p>
<p>At any rate, I have moved on from this bbconverter. I have wasted quite a few months and effort waiting for answers to my problems from AWJunkies. Too bad he isn't willing to finish what he started.
</p>]]></description>
					</item>
		<item>
			<title>Hard Seat Sleeper 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/6#post-98174</link>
			<pubDate>Thu, 16 Feb 2012 04:15:04 +0000</pubDate>
			<dc:creator>Hard Seat Sleeper</dc:creator>
			<guid isPermaLink="false">98174@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>ebiznet88 - even trying to hire these fellows is not easy. They rarely respond to any emails, even for paid work. And when they do, they seem very disorganized. Maybe they are just busy?</p>
<p>I suggest you move on.
</p>]]></description>
					</item>
		<item>
			<title>ebiznet88 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/6#post-98144</link>
			<pubDate>Wed, 15 Feb 2012 05:23:49 +0000</pubDate>
			<dc:creator>ebiznet88</dc:creator>
			<guid isPermaLink="false">98144@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Doesn't look like we'll be receiving any responses from the creators. It looks like they have abandoned the project.</p>
<p>I'm sure they receive email notifications of replies to this thread, and there have been so many questions posed but they haven't bothered to come in to reply. Even their website forum has been quiet.</p>
<p>I'm checking out another possible solution to bridge phpBB3 to WP. Its a plugin available at <a href="http://wordpress.org/extend/plugins/wp-phpbb-bridge/" rel="nofollow">http://wordpress.org/extend/plugins/wp-phpbb-bridge/</a>.</p>
<p>I will be installing it as soon as I can squeeze a few hours in and hope it works.</p>
<p>Has anyone else tried this bridging plugin and care to give a review?
</p>]]></description>
					</item>
		<item>
			<title>Ed 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/6#post-98128</link>
			<pubDate>Tue, 14 Feb 2012 16:47:47 +0000</pubDate>
			<dc:creator>Ed</dc:creator>
			<guid isPermaLink="false">98128@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>so, no news then?</p>
<p>anyone have some tips for other forums to try that work well with WP then?
</p>]]></description>
					</item>
		<item>
			<title>Aniezz on "Why bbPress sucks!"</title>
			<link>http://bbpress.org/forums/topic/why-bbpress-sucks#post-97960</link>
			<pubDate>Wed, 08 Feb 2012 19:06:25 +0000</pubDate>
			<dc:creator>Aniezz</dc:creator>
			<guid isPermaLink="false">97960@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Wow, I just about to use bbpress as a private forum based on recommendation of a co-worker and just realize this huge differences along with other avail forum software's.</p>
<p>And about standalone package idea, I disagree with it since as part the wp plugin is the best reason I going to use it.
</p>]]></description>
					</item>
		<item>
			<title>Ronald Rogers on "Why bbPress sucks!"</title>
			<link>http://bbpress.org/forums/topic/why-bbpress-sucks#post-97932</link>
			<pubDate>Tue, 07 Feb 2012 12:02:28 +0000</pubDate>
			<dc:creator>Ronald Rogers</dc:creator>
			<guid isPermaLink="false">97932@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Holy TLDR.</p>
<p>But I have to second the standalone package idea. That sounds like it would open up very interesting possibilities.
</p>]]></description>
					</item>
		<item>
			<title>ebiznet88 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/6#post-97904</link>
			<pubDate>Mon, 06 Feb 2012 13:11:33 +0000</pubDate>
			<dc:creator>ebiznet88</dc:creator>
			<guid isPermaLink="false">97904@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Any replies from the mods or plugin creators?</p>
<p>Seems only spammers are responding ;)</p>
<p>Looks like this thread and plugin has been abandoned :(</p>
<p>I had high hopes for this plugin and forum but looks like I'll have to look elsewhere. I've wasted enough time and effort on this!
</p>]]></description>
					</item>
		<item>
			<title>angelazou on "Why bbPress sucks!"</title>
			<link>http://bbpress.org/forums/topic/why-bbpress-sucks#post-97870</link>
			<pubDate>Sun, 05 Feb 2012 16:03:50 +0000</pubDate>
			<dc:creator>angelazou</dc:creator>
			<guid isPermaLink="false">97870@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi, I'm just stopping by, but I think I may be able to some help with coding.</p>
<p>I can do some simple PHP, mostly without the classes/objects stuff (I'm currently in the process of learning PHP, so would really like some practical experience other than tweaking plugins).</p>
<p>I'm better with MySQL. I can devote perhaps 2 to 3 hours a day.</p>
<p>I'm located at the UTC+8 timezone (although I probably can't get up at 5 AM to attend the dev meeting).
</p>]]></description>
					</item>
		<item>
			<title>John James Jacoby on "Why bbPress sucks!"</title>
			<link>http://bbpress.org/forums/topic/why-bbpress-sucks#post-97866</link>
			<pubDate>Sun, 05 Feb 2012 08:06:14 +0000</pubDate>
			<dc:creator>John James Jacoby</dc:creator>
			<guid isPermaLink="false">97866@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>No need to post tickets here. I'll see them right away.
</p>]]></description>
					</item>
		<item>
			<title>ebiznet88 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/6#post-97854</link>
			<pubDate>Sat, 04 Feb 2012 08:52:32 +0000</pubDate>
			<dc:creator>ebiznet88</dc:creator>
			<guid isPermaLink="false">97854@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi Anointed and AWJunkies, is there any update on the issues with the phpBB conversion that many users on this thread have highlighted?</p>
<p>Right now, I'm stuck in no-man's land and would love to get a resolution of sorts.</p>
<p>If there is no further support or development into this plugin, then please let us know so that users like me can look at other solutions for our forum boards.</p>
<p>I appreciate all the work that has gone into this, but as it is, its not complete and not usable to anyone. </p>
<p>If anyone has successfully converted their phpBB board to bbPress using this converter, I'd like to hear from them.</p>
<p>Thank you in advance for any replies and help!
</p>]]></description>
					</item>
		<item>
			<title>OC2PS on "Why bbPress sucks!"</title>
			<link>http://bbpress.org/forums/topic/why-bbpress-sucks#post-97842</link>
			<pubDate>Sat, 04 Feb 2012 03:05:27 +0000</pubDate>
			<dc:creator>OC2PS</dc:creator>
			<guid isPermaLink="false">97842@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Alright, jjj, have at it:</p>
<p><a href="https://core.trac.wordpress.org/ticket/19961" rel="nofollow">https://core.trac.wordpress.org/ticket/19961</a></p>
<p><a href="https://core.trac.wordpress.org/ticket/19958" rel="nofollow">https://core.trac.wordpress.org/ticket/19958</a></p>
<p><a href="http://bbpress.trac.wordpress.org/ticket/1737" rel="nofollow">http://bbpress.trac.wordpress.org/ticket/1737</a></p>
<p><a href="http://bbpress.trac.wordpress.org/ticket/1738" rel="nofollow">http://bbpress.trac.wordpress.org/ticket/1738</a></p>
<p><a href="http://bbpress.trac.wordpress.org/ticket/1739" rel="nofollow">http://bbpress.trac.wordpress.org/ticket/1739</a></p>
<p><a href="http://bbpress.trac.wordpress.org/ticket/1740" rel="nofollow">http://bbpress.trac.wordpress.org/ticket/1740</a></p>
<p><a href="http://bbpress.trac.wordpress.org/ticket/1741" rel="nofollow">http://bbpress.trac.wordpress.org/ticket/1741</a></p>
<p><a href="http://bbpress.trac.wordpress.org/ticket/1742" rel="nofollow">http://bbpress.trac.wordpress.org/ticket/1742</a></p>
<p><a href="http://bbpress.trac.wordpress.org/ticket/1743" rel="nofollow">http://bbpress.trac.wordpress.org/ticket/1743</a></p>
<p><a href="http://bbpress.trac.wordpress.org/ticket/1744" rel="nofollow">http://bbpress.trac.wordpress.org/ticket/1744</a></p>
<p><a href="http://bbpress.trac.wordpress.org/ticket/1745" rel="nofollow">http://bbpress.trac.wordpress.org/ticket/1745</a></p>
<p><a href="http://bbpress.trac.wordpress.org/ticket/1746" rel="nofollow">http://bbpress.trac.wordpress.org/ticket/1746</a></p>
<p><a href="http://bbpress.trac.wordpress.org/ticket/1747" rel="nofollow">http://bbpress.trac.wordpress.org/ticket/1747</a></p>
<p><a href="http://bbpress.trac.wordpress.org/ticket/1748" rel="nofollow">http://bbpress.trac.wordpress.org/ticket/1748</a></p>
<p><a href="http://bbpress.trac.wordpress.org/ticket/1749" rel="nofollow">http://bbpress.trac.wordpress.org/ticket/1749</a></p>
<p><a href="http://bbpress.trac.wordpress.org/ticket/1750" rel="nofollow">http://bbpress.trac.wordpress.org/ticket/1750</a></p>
<p><a href="http://bbpress.trac.wordpress.org/ticket/1751" rel="nofollow">http://bbpress.trac.wordpress.org/ticket/1751</a>
</p>]]></description>
					</item>
		<item>
			<title>John James Jacoby on "Why bbPress sucks!"</title>
			<link>http://bbpress.org/forums/topic/why-bbpress-sucks#post-97839</link>
			<pubDate>Sat, 04 Feb 2012 01:01:58 +0000</pubDate>
			<dc:creator>John James Jacoby</dc:creator>
			<guid isPermaLink="false">97839@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>It's a neat idea, bundling them together like that. Hm.
</p>]]></description>
					</item>

	</channel>
</rss>

