<?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; Forum: Plugins - Recent Posts</title>
		<link>http://bbpress.org/forums/forum/plugins</link>
		<description>bbPress Support Forums &#187; Forum: Plugins - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Fri, 25 May 2012 15:53:49 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/forums/rss/forum/plugins" 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>simtic on "add a &quot;Featured Image&quot; to a forum"</title>
			<link>http://bbpress.org/forums/topic/add-a-featured-image-to-a-forum#post-103206</link>
			<pubDate>Fri, 25 May 2012 07:23:48 +0000</pubDate>
			<dc:creator>simtic</dc:creator>
			<guid isPermaLink="false">103206@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hello sxalexander,</p>
<p>Yes, this is a much better way to do that.<br />
And it keeps the bbpress plugin unchanged, so it can safely be updated.</p>
<p>Thanks !
</p>]]></description>
					</item>
		<item>
			<title>sxalexander on "add a &quot;Featured Image&quot; to a forum"</title>
			<link>http://bbpress.org/forums/topic/add-a-featured-image-to-a-forum#post-103194</link>
			<pubDate>Fri, 25 May 2012 02:34:01 +0000</pubDate>
			<dc:creator>sxalexander</dc:creator>
			<guid isPermaLink="false">103194@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>This is a bit late, but I think there's another way to solve this.</p>
<p>I think the most WordPress-y way to accomplish this is to add the following to your theme's /functions.php:</p>
<pre><code>add_post_type_support(&#039;forum&#039;, array(&#039;thumbnail&#039;));</code></pre>
<p>This will add the featured image metabox to all forums. See here for more details:</p>
<p><a href="http://codex.wordpress.org/Function_Reference/add_post_type_support" rel="nofollow">http://codex.wordpress.org/Function_Reference/add_post_type_support</a>
</p>]]></description>
					</item>
		<item>
			<title>Lynq on "new forum for every post plugin ?"</title>
			<link>http://bbpress.org/forums/topic/new-forum-for-every-post-plugin#post-103182</link>
			<pubDate>Thu, 24 May 2012 09:31:05 +0000</pubDate>
			<dc:creator>Lynq</dc:creator>
			<guid isPermaLink="false">103182@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>So all you need to do at the moment is have something like:</p>
<p>a custom page metabox for the post which saves the forum id after it has been created by the Posts 2 Posts plugin.</p>
<p>Then in your single.php file you can use the bbPress functions to retrieve the relevant topics for the forum id assigned to that post.</p>
<pre><code>if ( bbp_has_topics( array( &#039;post_parent&#039; =&#62; $postmeta[&#34;forum_id&#34;] ) ) )
	bbp_get_template_part( &#039;bbpress/loop&#039;, &#039;topics&#039; );</code></pre>]]></description>
					</item>
		<item>
			<title>Lynq on "Posts 2 Posts: Given a forum id - , how I can I display a list of recent topics?"</title>
			<link>http://bbpress.org/forums/topic/posts-2-posts-given-a-forum-id-how-i-can-i-display-a-list-of-recent-topics#post-103181</link>
			<pubDate>Thu, 24 May 2012 09:22:03 +0000</pubDate>
			<dc:creator>Lynq</dc:creator>
			<guid isPermaLink="false">103181@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Oh right ok.</p>
<p>You may want to use something like:</p>
<pre><code>if ( bbp_has_topics( array( &#039;author&#039; =&#62; 0, &#039;show_stickies&#039; =&#62; true, &#039;order&#039; =&#62; &#039;DESC&#039;, &#039;posts_per_page&#039; =&#62; 5 ) ) )
	bbp_get_template_part( &#039;bbpress/loop&#039;, &#039;topics&#039; );</code></pre>]]></description>
					</item>
		<item>
			<title>eternal noob on "Posts 2 Posts: Given a forum id - , how I can I display a list of recent topics?"</title>
			<link>http://bbpress.org/forums/topic/posts-2-posts-given-a-forum-id-how-i-can-i-display-a-list-of-recent-topics#post-103180</link>
			<pubDate>Thu, 24 May 2012 09:14:11 +0000</pubDate>
			<dc:creator>eternal noob</dc:creator>
			<guid isPermaLink="false">103180@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Oh, just to be clear: Actually I dont need a list of the forums - I need a list of the topics from a forum that i have made a relation to. As if I used a widget Recent topics from X forum.
</p>]]></description>
					</item>
		<item>
			<title>eternal noob on "Posts 2 Posts: Given a forum id - , how I can I display a list of recent topics?"</title>
			<link>http://bbpress.org/forums/topic/posts-2-posts-given-a-forum-id-how-i-can-i-display-a-list-of-recent-topics#post-103179</link>
			<pubDate>Thu, 24 May 2012 09:07:59 +0000</pubDate>
			<dc:creator>eternal noob</dc:creator>
			<guid isPermaLink="false">103179@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@Lynq - help me more... (smiling)</p>
<p>How can I check what is in the post meta data ?</p>
<p>And would that be a template tag I put in my post.php-template like:</p>
<p>&#60;? bbp_list_forums( array ('forum_id' =&#62; '') );?&#62;</p>
<p>Or ?</p>
<p>Thanks, Jacob.
</p>]]></description>
					</item>
		<item>
			<title>eternal noob on "new forum for every post plugin ?"</title>
			<link>http://bbpress.org/forums/topic/new-forum-for-every-post-plugin#post-103178</link>
			<pubDate>Thu, 24 May 2012 09:04:46 +0000</pubDate>
			<dc:creator>eternal noob</dc:creator>
			<guid isPermaLink="false">103178@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@Lynq<br />
Been there done that thought. But as you rightly point out - I want everything or most to be done via the standard post type. Right now I can simply creta a new forum by typing in the title of the post and the forum is automaticlly pulled in by the plugin Posts 2 Posts by scribu. So actually all I need is to fetch the topics from tht specific forum that I have also created a relation to. So we are almost there.</p>
<p>Have you seen hypercomments.com ? Another benefit is that comments can be made vailable to the public - whereas forum topics are restricted to members.</p>
<p>And as anpother pointer - see <a href="http://simile.mit.edu/exhibit/examples/presidents/presidents.html" rel="nofollow">http://simile.mit.edu/exhibit/examples/presidents/presidents.html</a></p>
<p>Which is this piece of supercool software: <a href="http://simile.mit.edu/exhibit/" rel="nofollow">http://simile.mit.edu/exhibit/</a></p>
<p>But thanks again Lynq.
</p>]]></description>
					</item>
		<item>
			<title>Lynq on "BBPress limit Topic length on widget"</title>
			<link>http://bbpress.org/forums/topic/bbpress-limit-topic-length-on-widget#post-103176</link>
			<pubDate>Thu, 24 May 2012 08:38:50 +0000</pubDate>
			<dc:creator>Lynq</dc:creator>
			<guid isPermaLink="false">103176@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>You would probably have to look into either, building your own plugin to create the widget (Which you could do quickly by replicating the bbPress widget code) or customize the bbPress widget.</p>
<p>This could also be achieved with css, by having a fixed height and width and then adding overflow hidden, but you would have a little difficulty with the ... part.</p>
<p>Good luck!
</p>]]></description>
					</item>
		<item>
			<title>sofineo on "WordPress comments"</title>
			<link>http://bbpress.org/forums/topic/wordpress-comments#post-103159</link>
			<pubDate>Wed, 23 May 2012 23:54:42 +0000</pubDate>
			<dc:creator>sofineo</dc:creator>
			<guid isPermaLink="false">103159@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi ! (sorry for my english...)</p>
<p>I would like to use BBPress topics for post plugin, but when i install it all the previous wordpress comments i had in the post are not shown anymore. Only the new comments created with the plugin are shown. </p>
<p>Am i using the right plugin ? another one would do what i need ?</p>
<p>If not, Is there a way to keep those comments in my blog posts and also a way to automatically create topics in the forum using all the old wordpress comments ?</p>
<p>Thx for your help.
</p>]]></description>
					</item>
		<item>
			<title>DuelVFX on "BBPress limit Topic length on widget"</title>
			<link>http://bbpress.org/forums/topic/bbpress-limit-topic-length-on-widget#post-103158</link>
			<pubDate>Wed, 23 May 2012 22:34:46 +0000</pubDate>
			<dc:creator>DuelVFX</dc:creator>
			<guid isPermaLink="false">103158@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hey, so i have looked for quite a while but couldn't find anything on this...</p>
<p>So regarding the BBPress widget "Topic Lists" where by it lists (in my case) the 5 newest topics made on my forum. I have made a custom background image for this, but i get a problem when a topic is a long length and it carries on over to 2 lines.</p>
<p>Basically i need a way to limit these topic lengths just on the widget to something like 10 characters long and then "..." so they will stay on 1 line.</p>
<p>Is there a way to do this quickly and easily? I am very new to this, but i am picking things up fast!</p>
<p>Thanks in advance!
</p>]]></description>
					</item>
		<item>
			<title>Lynq on "Posts 2 Posts: Given a forum id - , how I can I display a list of recent topics?"</title>
			<link>http://bbpress.org/forums/topic/posts-2-posts-given-a-forum-id-how-i-can-i-display-a-list-of-recent-topics#post-103150</link>
			<pubDate>Wed, 23 May 2012 15:12:23 +0000</pubDate>
			<dc:creator>Lynq</dc:creator>
			<guid isPermaLink="false">103150@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Using </p>
<p><code>bbp_list_forums( array (&#039;forum_id&#039; =&#62; &#039;&#039;) );</code> </p>
<p>will return a list of the forums, you just need to specify it with a forum ID. Which you might be able to get from your post meta data?
</p>]]></description>
					</item>
		<item>
			<title>Lynq on "new forum for every post plugin ?"</title>
			<link>http://bbpress.org/forums/topic/new-forum-for-every-post-plugin#post-103146</link>
			<pubDate>Wed, 23 May 2012 12:05:08 +0000</pubDate>
			<dc:creator>Lynq</dc:creator>
			<guid isPermaLink="false">103146@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>What about putting your post in the forum description area?</p>
<p>Then styling the forum description as a full post and positioning it above the forum header. By using some clever position:relative and position:absolute you could achieve what you are looking for.</p>
<p>This would mean removing the base url for forums and using the forums as a way of publishing your posts.</p>
<p>The big issue with this is of course the compatibility with plugins that attach themselves to post actions.</p>
<p>Other than that I would think it requires creating a very custom plugin.
</p>]]></description>
					</item>
		<item>
			<title>eternal noob on "new forum for every post plugin ?"</title>
			<link>http://bbpress.org/forums/topic/new-forum-for-every-post-plugin#post-103140</link>
			<pubDate>Wed, 23 May 2012 08:50:23 +0000</pubDate>
			<dc:creator>eternal noob</dc:creator>
			<guid isPermaLink="false">103140@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@Lynq: yes.</p>
<p>Hijacking my own thread:<br />
<a href="http://bbpress.org/forums/topic/posts-2-posts-given-a-forum-id-how-i-can-i-display-a-list-of-recent-topics" rel="nofollow">http://bbpress.org/forums/topic/posts-2-posts-given-a-forum-id-how-i-can-i-display-a-list-of-recent-topics</a></p>
<p>Anybody has an answer for this ?
</p>]]></description>
					</item>
		<item>
			<title>Lynq on "new forum for every post plugin ?"</title>
			<link>http://bbpress.org/forums/topic/new-forum-for-every-post-plugin#post-103137</link>
			<pubDate>Wed, 23 May 2012 08:05:48 +0000</pubDate>
			<dc:creator>Lynq</dc:creator>
			<guid isPermaLink="false">103137@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>So just to clarify, you want a whole forum for each post, not a topic for each post?</p>
<p>@dannyjimmy lol, thanks! Yes I am the non upside down one :p
</p>]]></description>
					</item>
		<item>
			<title>eternal noob on "new forum for every post plugin ?"</title>
			<link>http://bbpress.org/forums/topic/new-forum-for-every-post-plugin#post-103133</link>
			<pubDate>Wed, 23 May 2012 06:28:02 +0000</pubDate>
			<dc:creator>eternal noob</dc:creator>
			<guid isPermaLink="false">103133@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@Gautam</p>
<p>1. When creating a post or page I create a relation to a topic-tag, and then use that topic-tag as a "forum" and linking/fetching it on thepost or page itself. Is that what you are saying ? So how could I create a relation from post/page to topic-tag when posting ? Could there be a way to enable topic-tags for the standard post-type perhaps so a meta-box would occur beneath the standard post tag ? Or should I just create another custom taxonomy ?</p>
<p>It is a very good solution, Gautam. Beautiful and simple. Thank you.</p>
<p>@jaredatch<br />
<a href="http://wordpress.org/support/topic/plugin-bbpress-topics-for-posts-forum-for-post-in-stead-of-topic/" rel="nofollow">http://wordpress.org/support/topic/plugin-bbpress-topics-for-posts-forum-for-post-in-stead-of-topic/</a></p>
<p>Yes, I know. Thanks.</p>
<p>@Lynq</p>
<p>That is an alternative solution, but as pointed out not what I am looking for.</p>
<p>@To the thread<br />
Just to make it clear - I dont want an entire bbpress-installation for every post or page. But some kind of automation, so I would not have to insert a forum manually by shortcode. It is just another way of commenting more focused like in the bottom of amazon.com when you are iewing a book for example.</p>
<p>It is not a big problem as such. But it is obvious to replace the wordpress-comment system which is totally hopeless and lacking for a blogging platform. It is amazing that wordpress doesnt have any creative thoughts on commenting. WordPress should have invented disqus - not disqus. Disqus is really useful - but disqus takes control from you. P2 has some, sure.</p>
<p>Thanks for any input,</p>
<p>Jacob
</p>]]></description>
					</item>
		<item>
			<title>dannyjimmy on "new forum for every post plugin ?"</title>
			<link>http://bbpress.org/forums/topic/new-forum-for-every-post-plugin#post-103132</link>
			<pubDate>Wed, 23 May 2012 02:34:51 +0000</pubDate>
			<dc:creator>dannyjimmy</dc:creator>
			<guid isPermaLink="false">103132@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Lynq and Jaredatch</p>
<p>I think you're missing his point. He wants an entire forum. Yes a FORUM, not just a topic, created for each post.</p>
<p>An entire bbPress forum. </p>
<p>So that people, within it, can create multiple topics for each blog post.</p>
<p>Ahem.</p>
<p>Although Lynq, I have to say, your profile pic is super fun/cute and romantic. (granted, I don't know which half of that you are... i'm guessing the non-upside down one.)
</p>]]></description>
					</item>
		<item>
			<title>Lynq on "new forum for every post plugin ?"</title>
			<link>http://bbpress.org/forums/topic/new-forum-for-every-post-plugin#post-103120</link>
			<pubDate>Tue, 22 May 2012 22:51:35 +0000</pubDate>
			<dc:creator>Lynq</dc:creator>
			<guid isPermaLink="false">103120@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Would there be any issues with just creating topics and not posts?</p>
<p>Style the first reply as a blog post and then have the rest of the replies inside the forum style? You could then remove the base of the forum and have the links from your root domain.</p>
<p>I am probably overlooking something big though.
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "new forum for every post plugin ?"</title>
			<link>http://bbpress.org/forums/topic/new-forum-for-every-post-plugin#post-103116</link>
			<pubDate>Tue, 22 May 2012 20:27:08 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">103116@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Check out <a href="http://wordpress.org/extend/plugins/bbpress-post-topics/" rel="nofollow">http://wordpress.org/extend/plugins/bbpress-post-topics/</a>
</p>]]></description>
					</item>
		<item>
			<title>eternal noob on "new forum for every post plugin ?"</title>
			<link>http://bbpress.org/forums/topic/new-forum-for-every-post-plugin#post-103114</link>
			<pubDate>Tue, 22 May 2012 20:10:59 +0000</pubDate>
			<dc:creator>eternal noob</dc:creator>
			<guid isPermaLink="false">103114@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi, Gautam.</p>
<p>Could you write a couple of more lines - Im not sure I understand. But actually, That would a bit like hypercomments - If one could only make topics as comments and then the topics up for discussion would be fetched back by shortcode. Are you thinking about the way wordpress supportforums are working now ?</p>
<p>Thanks.
</p>]]></description>
					</item>
		<item>
			<title>kennymcnett on "Modifying a BB_query on the fly?"</title>
			<link>http://bbpress.org/forums/topic/modifying-a-bb_query-on-the-fly#post-103073</link>
			<pubDate>Tue, 22 May 2012 01:48:55 +0000</pubDate>
			<dc:creator>kennymcnett</dc:creator>
			<guid isPermaLink="false">103073@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Litso, would you mind posting your code? This sounds like what I need to do, but I don't know how to change the $obj-&#62;request like you mentioned works.
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "Adding Read/Unread post status to bbPress Plugin?"</title>
			<link>http://bbpress.org/forums/topic/adding-readunread-post-status-to-bbpress-plugin#post-103067</link>
			<pubDate>Mon, 21 May 2012 21:17:56 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">103067@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>You can look into something like <a href="http://pippinsplugins.com/mark-as-read-for-wordpress/" rel="nofollow">http://pippinsplugins.com/mark-as-read-for-wordpress/</a> however it will require some moderate tweaks to work with bbPress I believe.
</p>]]></description>
					</item>
		<item>
			<title>ahkar83 on "[bbp-single-topic-tag] id?"</title>
			<link>http://bbpress.org/forums/topic/shortcode-questions-continued#post-103063</link>
			<pubDate>Mon, 21 May 2012 19:41:33 +0000</pubDate>
			<dc:creator>ahkar83</dc:creator>
			<guid isPermaLink="false">103063@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>hello... pls let me know if you find a fix for this.. i am also looking for this. thanks.
</p>]]></description>
					</item>
		<item>
			<title>dannyjimmy on "Adding Read/Unread post status to bbPress Plugin?"</title>
			<link>http://bbpress.org/forums/topic/adding-readunread-post-status-to-bbpress-plugin#post-103061</link>
			<pubDate>Mon, 21 May 2012 17:39:48 +0000</pubDate>
			<dc:creator>dannyjimmy</dc:creator>
			<guid isPermaLink="false">103061@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@tooltrainer </p>
<p>Any progress on this for bbP? </p>
<p>I know BuddyPress has a great plugin for this:</p>
<p>BP Unread Posts</p>
<p>Thanks,
</p>]]></description>
					</item>
		<item>
			<title>Gautam on "new forum for every post plugin ?"</title>
			<link>http://bbpress.org/forums/topic/new-forum-for-every-post-plugin#post-103002</link>
			<pubDate>Sat, 19 May 2012 08:03:50 +0000</pubDate>
			<dc:creator>Gautam</dc:creator>
			<guid isPermaLink="false">103002@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I guess using topic tags instead of forums would be a better idea performance-wise. The topic slug can be the tag slug and it could be automatically attached via a shortcode.
</p>]]></description>
					</item>
		<item>
			<title>eternal noob on "new forum for every post plugin ?"</title>
			<link>http://bbpress.org/forums/topic/new-forum-for-every-post-plugin#post-103000</link>
			<pubDate>Sat, 19 May 2012 06:04:50 +0000</pubDate>
			<dc:creator>eternal noob</dc:creator>
			<guid isPermaLink="false">103000@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>hi dannyjimmy.</p>
<p>The point was more to find some kind of way between blogcommenting that many times becomes such a stupid form of intellectual exchange, because it has become custom to not really think about what you want to bring attention to. Cheering, fanclubbing, "yeah i think so too" mixed in with people trying to decipher the thoughts revealed in an article, newspost, blog post or whatever. By making them type in a title and making and independent "in its own right"-kinda-style - they will be forced to be more focused and people considering responding will have to choose which comment to comment on - which again will make it more focused - because one thinks - why would I respond to this ?</p>
<p>But, seriously - this is awesome: <a href="http://hypercomments.com" rel="nofollow">http://hypercomments.com</a>. Note the thing with marking a part of the text and it automatically becomes a topic separate from the comments - that is seriously good !</p>
<p>And besides using posts 2 posts plugin by scribu you can get some of the way - by making a forum quickly when making a post - check it out: <a href="http://wordpress.org/extend/plugins/posts-to-posts/" rel="nofollow">http://wordpress.org/extend/plugins/posts-to-posts/</a></p>
<p>It is a matter of convenience because you can just make a forum and then include by shortcode. Alternatively one could display the category-text that belongs to the forum while listing the topics belonging to it. That is using the category as an aricle in its own right and somehow displaying it when listing the topics.</p>
<p>But thanks.
</p>]]></description>
					</item>
		<item>
			<title>dannyjimmy on "new forum for every post plugin ?"</title>
			<link>http://bbpress.org/forums/topic/new-forum-for-every-post-plugin#post-102986</link>
			<pubDate>Fri, 18 May 2012 22:00:21 +0000</pubDate>
			<dc:creator>dannyjimmy</dc:creator>
			<guid isPermaLink="false">102986@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>WHOA. Face melting idea.</p>
<p>I could see it being good for blogs who post infrequently and get tons of traffic. Every post is so monumental it gets its own FORUM... this would be like... for the UN or the White House or something.</p>
<p>I'm in jest -- anyone who gets more than 100 comments per thread might want this; 10-20 responding topics with 5-10 comments each...</p>
<p>I hear you... comments/replies can be spammy and dumb dumb... but, I mean, here's the thing:</p>
<p>Once a user creates a topic, then all the conversation that follows in that forum will be, likewise, comments/replies. I.e. similarly unfocused and not very constructive. So I'm not sure that what you're proposing solves the problem you're presenting.</p>
<p>Also, forum topics are easier to skim the entire content of, forums not so much. And people want to skim blog comments.</p>
<p>That being said, I'm still smiling thinking about how epic it might be to spawn entire forums from single blog posts. (though I can't claim I'd use the plugin if it were made)</p>
<p>:-)
</p>]]></description>
					</item>
		<item>
			<title>Alex Kramer on "v2: Simple Press importer, and first thoughts"</title>
			<link>http://bbpress.org/forums/topic/v2-simple-press-importer-and-first-thoughts#post-102895</link>
			<pubDate>Thu, 17 May 2012 17:52:39 +0000</pubDate>
			<dc:creator>Alex Kramer</dc:creator>
			<guid isPermaLink="false">102895@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>This is plugin for import from "Simple Press forum" to bbPress-wp-plugin.<br />
Please help make same, but for import to independent bbPress-forum.<br />
It possible?<br />
At least one example how i can write into the bbPress database?
</p>]]></description>
					</item>
		<item>
			<title>george1313 on "BBcode and BBpress 2 error. Please help."</title>
			<link>http://bbpress.org/forums/topic/bbcode-and-bbpress-2-error-please-help#post-102887</link>
			<pubDate>Thu, 17 May 2012 15:03:30 +0000</pubDate>
			<dc:creator>george1313</dc:creator>
			<guid isPermaLink="false">102887@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Resolved. Disregard.
</p>]]></description>
					</item>
		<item>
			<title>george1313 on "BBcode and BBpress 2 error. Please help."</title>
			<link>http://bbpress.org/forums/topic/bbcode-and-bbpress-2-error-please-help#post-102886</link>
			<pubDate>Thu, 17 May 2012 14:34:21 +0000</pubDate>
			<dc:creator>george1313</dc:creator>
			<guid isPermaLink="false">102886@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hoping someone here has the knowledge to help. </p>
<p>I’m using the bbpress plugin with buddypress/wordpress install. I installed the bbcode plugin to let users use bbcode in the forums. Everything worked great, but now when you insert a youtube video on the forum with the bbpress post toolbar, I get this error:</p>
<p>YOUTUBE<br />
 Warning: Cannot modify header information – headers already sent by (output started at /home/highhob/public_html/ridecbr/wp-content/plugins/bbpress-bbcode/class_bbpress2-bbcode.php:268) in /home/highhob/public_html/ridecbr/wp-includes/pluggable.php on line 866</p>
<p>The video DOES POST, but this error comes up first and I need to get it removed and resolved. Also, above any youtube video, the word YOUTUBE shows up.</p>
<p>Please let me know if you can help.</p>
<p>Thank you so much,<br />
-George
</p>]]></description>
					</item>

	</channel>
</rss>

