<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress Support Forums Tag: discussion</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress Support Forums Tag: discussion</description>
<language>en</language>
<pubDate>Fri, 09 Jan 2009 03:32:20 +0000</pubDate>

<item>
<title>_ck_ on "Latest Discussion - More Control"</title>
<link>http://bbpress.org/forums/topic/latest-discussion-more-control#post-22600</link>
<pubDate>Mon, 05 Jan 2009 03:29:50 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">22600@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Do not use the Private Forums plugin, it has not been updated in awhile and has bugs.&#60;br /&#62;
Use my Hidden Forums plugin instead. The code above is not sufficient in itself.
&#60;/p&#62;</description>
</item>
<item>
<title>walkerevans on "Latest Discussion - More Control"</title>
<link>http://bbpress.org/forums/topic/latest-discussion-more-control#post-22597</link>
<pubDate>Mon, 05 Jan 2009 02:28:39 +0000</pubDate>
<dc:creator>walkerevans</dc:creator>
<guid isPermaLink="false">22597@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I was looking to do &#60;a href=&#34;http://trac.bbpress.org/ticket/3&#34;&#62;#3&#60;/a&#62; as well. This solution works like a champ. Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>Detective on "Latest Discussion - More Control"</title>
<link>http://bbpress.org/forums/topic/latest-discussion-more-control#post-16648</link>
<pubDate>Sat, 07 Jun 2008 23:30:33 +0000</pubDate>
<dc:creator>Detective</dc:creator>
<guid isPermaLink="false">16648@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;For 3, from the Genealogías theme:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function gs_topic_forum_link() {
	global $topic;
	if ($topic) {
		echo &#38;#39;&#38;lt;a href=&#38;quot;&#38;#39; . get_forum_link($topic-&#38;gt;forum_id) . &#38;#39;&#38;quot;&#38;gt;&#38;#39; . get_forum_name($topic-&#38;gt;forum_id) . &#38;#39;&#38;lt;/a&#38;gt;&#38;#39;;

	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;For the private forums, i do the following (considering only one private forum, having id 22):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;#39;get_posts_where&#38;#39;, &#38;#39;ryuuko_staff_where_posts&#38;#39;);

function ryuuko_staff_where_posts($where) {
	if (!bb_is_user_logged_in() &#124;&#124; !bb_current_user_can(&#38;#39;moderate&#38;#39;)) {
		$where .= &#38;quot; AND p.forum_id &#38;lt;&#38;gt; &#38;#39;22&#38;#39; &#38;quot;;
	}
	return $where;
}

add_filter(&#38;#39;get_topics_where&#38;#39;, &#38;#39;ryuuko_staff_where_topics&#38;#39;);
function ryuuko_staff_where_topics($where) {
	if (!bb_is_user_logged_in() &#124;&#124; !bb_current_user_can(&#38;#39;moderate&#38;#39;)) {
		$where .= &#38;quot; AND t.forum_id &#38;lt;&#38;gt; &#38;#39;22&#38;#39; &#38;quot;;
        }
	return $where;
}

add_filter(&#38;#39;get_forums&#38;#39;, &#38;#39;ryuuko_staff_forums&#38;#39;);
function ryuuko_staff_forums($forums) {
	if (!bb_is_user_logged_in() &#124;&#124; !bb_current_user_can(&#38;#39;moderate&#38;#39;)) {
			$forum_key = -1;
			foreach ($forums as $key =&#38;gt; $forum)
				if (intval($forum-&#38;gt;forum_id) == 22) {
					$forum_key = $key;
					break;
				}
			unset($forums[$key]);
	}
	return $forums;
}

add_action(&#38;#39;bb_forum.php_pre_db&#38;#39;, &#38;#39;ryuuko_forum_redirect&#38;#39;);
function ryuuko_forum_redirect($forum_id) {
	if (!bb_is_user_logged_in() &#124;&#124; !bb_current_user_can(&#38;#39;moderate&#38;#39;)) {
		if ($forum_id == 22)
			bb_die(&#38;quot;You can&#38;#39;t see this!&#38;quot;);
	}
}&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Sachrilege on "Latest Discussion - More Control"</title>
<link>http://bbpress.org/forums/topic/latest-discussion-more-control#post-16647</link>
<pubDate>Sat, 07 Jun 2008 23:05:58 +0000</pubDate>
<dc:creator>Sachrilege</dc:creator>
<guid isPermaLink="false">16647@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey everyone,&#60;br /&#62;
I'm trying to do 3 things.&#60;/p&#62;
&#60;p&#62;1. I want posts inactive longer then a set time to not be propagated to the Latest Discussions on the forum Index.&#60;/p&#62;
&#60;p&#62;2. I want hidden private forums to not show up on the Latest Discussion list unless they would normally be allowed to see it.&#60;/p&#62;
&#60;p&#62;3. I want the forum name to show up in another column in the Latest Discussion list.&#60;/p&#62;
&#60;p&#62;I'm using the Private Forums plug-in, and Latest Discussion is only visible on my site from bbpress/index. &#60;/p&#62;
&#60;p&#62;For 1. I found a plug-in but it's no longer supported and I couldn't clean up the Syntax error myself.&#60;/p&#62;
&#60;p&#62;For 2 I can find nothing.&#60;/p&#62;
&#60;p&#62;For 3 using another forum post I've already edited my templates to include the extra column and I almost see how to do it myself, but I can't see where to get the name of the forum from the topic. &#60;/p&#62;
&#60;p&#62;As always, thank you for whatever help you can offer.
&#60;/p&#62;</description>
</item>
<item>
<title>bbx on "Show Latest Discussions on WP HomePage"</title>
<link>http://bbpress.org/forums/topic/show-latest-discussions-on-wp-homepage#post-7701</link>
<pubDate>Mon, 28 May 2007 15:15:29 +0000</pubDate>
<dc:creator>bbx</dc:creator>
<guid isPermaLink="false">7701@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Oh great! Thx, it's just what I needed.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Show Latest Discussions on WP HomePage"</title>
<link>http://bbpress.org/forums/topic/show-latest-discussions-on-wp-homepage#post-7691</link>
<pubDate>Mon, 28 May 2007 04:33:21 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">7691@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;How about this for including the latest bbPress posts in your Wordpress sidebar?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/359?replies=30&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/359?replies=30&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>bbx on "Show Latest Discussions on WP HomePage"</title>
<link>http://bbpress.org/forums/topic/show-latest-discussions-on-wp-homepage#post-7677</link>
<pubDate>Sun, 27 May 2007 14:54:50 +0000</pubDate>
<dc:creator>bbx</dc:creator>
<guid isPermaLink="false">7677@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi&#60;/p&#62;
&#60;p&#62;I would put in my sidebar the latest discussions of the forum (exactly the same as the one on bbpress homepage).&#60;/p&#62;
&#60;p&#62;As I was unable to enable BB functions in WP (and vice versa), I was wondering if there was another way to do that.&#60;/p&#62;
&#60;p&#62;If not, could you help me with enabling BB functions in WP?&#60;/p&#62;
&#60;p&#62;Thx.&#60;/p&#62;
&#60;p&#62;bbx
&#60;/p&#62;</description>
</item>
<item>
<title>atomAstro on "limit forums included in latest discussions"</title>
<link>http://bbpress.org/forums/topic/limit-forums-included-in-latest-discussions#post-7218</link>
<pubDate>Fri, 04 May 2007 01:00:08 +0000</pubDate>
<dc:creator>atomAstro</dc:creator>
<guid isPermaLink="false">7218@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;works perfectly.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "limit forums included in latest discussions"</title>
<link>http://bbpress.org/forums/topic/limit-forums-included-in-latest-discussions#post-7208</link>
<pubDate>Thu, 03 May 2007 16:36:08 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">7208@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yup! Find this (or similar) codeblock in your theme's &#60;code&#62;front-page.php&#60;/code&#62;.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;tr&#38;lt;?php topic_class(); ?&#38;gt;&#38;gt;
	&#38;lt;td&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php topic_link(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php topic_title(); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/td&#38;gt;
	&#38;lt;td class=&#38;quot;num&#38;quot;&#38;gt;&#38;lt;?php topic_posts(); ?&#38;gt;&#38;lt;/td&#38;gt;
	&#38;lt;td class=&#38;quot;num&#38;quot;&#38;gt;&#38;lt;?php topic_last_poster(); ?&#38;gt;&#38;lt;/td&#38;gt;
	&#38;lt;td class=&#38;quot;num&#38;quot;&#38;gt;&#38;lt;small&#38;gt;&#38;lt;?php topic_time(); ?&#38;gt;&#38;lt;/small&#38;gt;&#38;lt;/td&#38;gt;
&#38;lt;/tr&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;strong&#62;Around&#60;/strong&#62; it put &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php if( $topic-&#38;gt;forum_id != 666 ) { ?&#38;gt;
... [[that code block]] ...
&#38;lt;?php } ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You will probably want to change &#60;code&#62;666&#60;/code&#62; to whatever forum id you actually want to exclude. You can put any conditional logic you like inside those if( ... ) brackets, so for example to filter for two forums you would put &#60;code&#62;if( $topic-&#38;gt;forum_id != 666 &#38;#38;&#38;#38; $topic-&#38;gt;forum_id != 999 )&#60;/code&#62;. Hope that helps.
&#60;/p&#62;</description>
</item>
<item>
<title>atomAstro on "limit forums included in latest discussions"</title>
<link>http://bbpress.org/forums/topic/limit-forums-included-in-latest-discussions#post-7197</link>
<pubDate>Thu, 03 May 2007 02:59:59 +0000</pubDate>
<dc:creator>atomAstro</dc:creator>
<guid isPermaLink="false">7197@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I would like to limit the forums being included in the latest discussions section.  More accurately, I wish to specifically exclude a forum.  Anyone have any ideas on how to do this in the template?
&#60;/p&#62;</description>
</item>
<item>
<title>Atsutane on "Latest Disscussions Plugin"</title>
<link>http://bbpress.org/forums/topic/latest-disscussions-plugin#post-6157</link>
<pubDate>Thu, 29 Mar 2007 23:27:03 +0000</pubDate>
<dc:creator>Atsutane</dc:creator>
<guid isPermaLink="false">6157@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Sorry my bad :) Forgot to update the readme file.
&#60;/p&#62;</description>
</item>
<item>
<title>drcmanx on "Latest Disscussions Plugin"</title>
<link>http://bbpress.org/forums/topic/latest-disscussions-plugin#post-6141</link>
<pubDate>Thu, 29 Mar 2007 18:30:06 +0000</pubDate>
<dc:creator>drcmanx</dc:creator>
<guid isPermaLink="false">6141@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;doh, thx i was thinking it was going to be added into the plugin (like Akismet) and not the options tab.  &#60;/p&#62;
&#60;p&#62;and the part you didn't know was me thinking that it might be interfering with my other forum topic reader for another board.&#60;/p&#62;
&#60;p&#62;Thx for the plugin support!&#60;/p&#62;
&#60;p&#62;add an updated install readme ;)
&#60;/p&#62;</description>
</item>
<item>
<title>Atsutane on "Latest Disscussions Plugin"</title>
<link>http://bbpress.org/forums/topic/latest-disscussions-plugin#post-6103</link>
<pubDate>Thu, 29 Mar 2007 07:30:10 +0000</pubDate>
<dc:creator>Atsutane</dc:creator>
<guid isPermaLink="false">6103@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;With new version of plugin, u dont need to edit the file directly anymore. U can always get the new version from &#60;a href=&#34;http://bbpress.org/plugins/topic/39&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/39&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;From what i can see. &#60;code&#62;SELECT * FROM topics WHERE&#60;/code&#62; It seem the bb table prefix is missing. Maybe u miss the setting.&#60;/p&#62;
&#60;p&#62;I dont know what u mean by &#34;i still have the SMF forum that reads the forum topics&#34; but u can find the option page inside wordpress option under &#34;BbLD Option&#34;
&#60;/p&#62;</description>
</item>
<item>
<title>drcmanx on "Latest Disscussions Plugin"</title>
<link>http://bbpress.org/forums/topic/latest-disscussions-plugin#post-6101</link>
<pubDate>Thu, 29 Mar 2007 05:59:27 +0000</pubDate>
<dc:creator>drcmanx</dc:creator>
<guid isPermaLink="false">6101@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm just going to add onto this post with my error about the plugin.&#60;/p&#62;
&#60;p&#62;I edited the php at these two lines:&#60;br /&#62;
[code]&#60;br /&#62;
	$bbpath = '/forum'; // Adjust the path to suit your bbpress&#60;br /&#62;
	$forum_slimit = '10'; // Adjust the limit to show&#60;br /&#62;
[/code]&#60;br /&#62;
uploaded the plugin into wp-content/plugin and then added&#60;br /&#62;
 [code]&#60;br /&#62;
        &#38;lt;?php wp_bb_get_discuss_sidebar(); ?&#38;gt;&#60;br /&#62;
[/code]&#60;br /&#62;
to my sidebar. activated the plugin to get the following error:  &#60;/p&#62;
&#60;p&#62;[code]&#60;br /&#62;
WordPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1]&#60;br /&#62;
SELECT * FROM topics WHERE topic_status = 0 ORDER BY topic_time DESC LIMIT&#60;br /&#62;
[/code]&#60;/p&#62;
&#60;p&#62;i still have the SMF forum that reads the forum topics with the line code:&#60;br /&#62;
[code]&#60;br /&#62;
&#38;lt;?php include ('/forum1/extern.php?action=active');?&#38;gt;&#60;br /&#62;
[/code]&#60;br /&#62;
so i have no clue what I did wrong... i'm thinking maybe its something I didn't edit.  Also i keep hearing about a option page for the plugin and can't seem to find it.
&#60;/p&#62;</description>
</item>
<item>
<title>Atsutane on "Latest Disscussions Plugin"</title>
<link>http://bbpress.org/forums/topic/latest-disscussions-plugin#post-5676</link>
<pubDate>Tue, 20 Mar 2007 23:33:26 +0000</pubDate>
<dc:creator>Atsutane</dc:creator>
<guid isPermaLink="false">5676@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The fix i already put inside the plugin seem not working. :( Maybe in the future bbpress should automatically fill up the &#60;code&#62;display_name&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Anyway i try to see what i can do with that.
&#60;/p&#62;</description>
</item>
<item>
<title>startribe on "Latest Disscussions Plugin"</title>
<link>http://bbpress.org/forums/topic/latest-disscussions-plugin#post-5652</link>
<pubDate>Tue, 20 Mar 2007 18:38:32 +0000</pubDate>
<dc:creator>startribe</dc:creator>
<guid isPermaLink="false">5652@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Think I just found a temporary fix. We have maybe 7 wordpress users that use display names. I don't think that bbpress users can edit display names in the bbpress profile section, so this must of been why it was showing up blank when our bbPress users (not wp users) were posting in the forums. I fixed the issue by un-checking the &#34;integrated with wordpress&#34; check box on the bdLP options page.&#60;/p&#62;
&#60;p&#62;Our bbpress and wordpress users don't switch sides so much, so it shouldn't be to much of an issue.&#60;/p&#62;
&#60;p&#62;Best,&#60;br /&#62;
Orion
&#60;/p&#62;</description>
</item>
<item>
<title>startribe on "Latest Disscussions Plugin"</title>
<link>http://bbpress.org/forums/topic/latest-disscussions-plugin#post-5651</link>
<pubDate>Tue, 20 Mar 2007 18:15:31 +0000</pubDate>
<dc:creator>startribe</dc:creator>
<guid isPermaLink="false">5651@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey Atsutane,&#60;/p&#62;
&#60;p&#62;I had another question. I noticed that the members name only seems to appear next to users using nicknames. For example, if I add a nickname to a user, then the users name will appear next to the latest post. But if a new bbPress user who doesn't use a Wpress nickname posts, then there name doesn't show up next to the latest post. Any ideas?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Orion
&#60;/p&#62;</description>
</item>
<item>
<title>Atsutane on "Latest Disscussions Plugin"</title>
<link>http://bbpress.org/forums/topic/latest-disscussions-plugin#post-5648</link>
<pubDate>Tue, 20 Mar 2007 11:55:08 +0000</pubDate>
<dc:creator>Atsutane</dc:creator>
<guid isPermaLink="false">5648@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Glad it work perfectly for you :)
&#60;/p&#62;</description>
</item>
<item>
<title>startribe on "Latest Disscussions Plugin"</title>
<link>http://bbpress.org/forums/topic/latest-disscussions-plugin#post-5647</link>
<pubDate>Tue, 20 Mar 2007 08:30:35 +0000</pubDate>
<dc:creator>startribe</dc:creator>
<guid isPermaLink="false">5647@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey Atsutane &#38;#38; Community,&#60;/p&#62;
&#60;p&#62;Figured it out. I re-read my post above and noticed something a askew in the line:&#60;/p&#62;
&#60;p&#62;'content._bbtopics'&#60;/p&#62;
&#60;p&#62;It should be &#34;bb_&#34; and not &#34;_bb&#34;&#60;/p&#62;
&#60;p&#62;So I made a bit of an error when imputing in the options. Anyhow, Atsutane, thanks for an excellent plugin! It is one of my personal favorites.&#60;/p&#62;
&#60;p&#62;Our site is now live at &#60;a href=&#34;http://victorybelt.com.&#34; rel=&#34;nofollow&#34;&#62;http://victorybelt.com.&#60;/a&#62; There is still plenty of areas I have to clean up, but we were rushed to go public, and we were at least able to get up and running in firefox and ie6.&#60;/p&#62;
&#60;p&#62;Thanks for all the support! With out this community it would not have been possible.&#60;/p&#62;
&#60;p&#62;Best,&#60;br /&#62;
Orion
&#60;/p&#62;</description>
</item>
<item>
<title>startribe on "Latest Disscussions Plugin"</title>
<link>http://bbpress.org/forums/topic/latest-disscussions-plugin#post-5644</link>
<pubDate>Tue, 20 Mar 2007 07:20:16 +0000</pubDate>
<dc:creator>startribe</dc:creator>
<guid isPermaLink="false">5644@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey Atsutane,&#60;/p&#62;
&#60;p&#62;I tried deactivating and reactivating the plugin. Also tried re-uploading the plugin, and I am still running into the same issue.&#60;/p&#62;
&#60;p&#62;I'm not sure what to look for in the option page at this point. I will have to research some more. Any additional ideas or direction would be greatly appreciated.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Orion
&#60;/p&#62;</description>
</item>
<item>
<title>Atsutane on "Latest Disscussions Plugin"</title>
<link>http://bbpress.org/forums/topic/latest-disscussions-plugin#post-5637</link>
<pubDate>Tue, 20 Mar 2007 00:08:40 +0000</pubDate>
<dc:creator>Atsutane</dc:creator>
<guid isPermaLink="false">5637@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;code&#62;FROM _bbtopics&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;it seem to me your bb table prefix kinda mess up. Try check back inside option page. I also using wp 2.1.2 and bb 0.8.1, and still i can update my option :)&#60;/p&#62;
&#60;p&#62;Try deactive and reactive the plugin back .. maybe that gonna fix it.&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;@fel64&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;thanks i will keep that in mind :)
&#60;/p&#62;</description>
</item>
<item>
<title>startribe on "Latest Disscussions Plugin"</title>
<link>http://bbpress.org/forums/topic/latest-disscussions-plugin#post-5633</link>
<pubDate>Mon, 19 Mar 2007 21:51:17 +0000</pubDate>
<dc:creator>startribe</dc:creator>
<guid isPermaLink="false">5633@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I am still a stuck on this, I am not totally sure what to enter in my plugin options. With the old plugin I adjusted these options in the plugin php file:&#60;/p&#62;
&#60;p&#62;$bbpath   = '/content/forums'; // Adjust the path to suit your bbpress location. Example: '/forums'&#60;br /&#62;
$forum_slimit = '20'; // Adjust the limit to show&#60;/p&#62;
&#60;p&#62;... and I was able to get the feature working.&#60;/p&#62;
&#60;p&#62;In the options menu for the new plugin I have adjusted the path to reflect the above path. I left the options below the &#34;External DB&#34; option blank: &#34;Bbpress DB User, Bbpress DB Pass, Bbpress DB Name, Bbpress DB Host,&#34; for I believe these are for using the external database, and I am using the local host and sharing a database with Wordpress. (I also tried filling the &#34;Bbpress DB User, Bbpress DB Pass, Bbpress DB Name, Bbpress DB Host&#34; options, with out checking the external datatbase box, and I ran into the same issue.)&#60;/p&#62;
&#60;p&#62;Anyhow, I will have to re-activate the old v.3 working plugin for now, and we will have to manually edit the title lengths in the meantime. I will still be pushing for a solution, and if anyone has any ideas to why I can't get this plugin working, the help would be appreciated.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Orion&#60;/p&#62;
&#60;p&#62;btw- i'm on Wordpress 2.1 &#38;#38; bbPress 0.8.1
&#60;/p&#62;</description>
</item>
<item>
<title>startribe on "Latest Disscussions Plugin"</title>
<link>http://bbpress.org/forums/topic/latest-disscussions-plugin#post-5632</link>
<pubDate>Mon, 19 Mar 2007 20:57:29 +0000</pubDate>
<dc:creator>startribe</dc:creator>
<guid isPermaLink="false">5632@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;it appears that my options page is not making changes to the plugin. Hmmm, I checked the plugin file, and it looks like the changes I made are still set to the defaults.
&#60;/p&#62;</description>
</item>
<item>
<title>startribe on "Latest Disscussions Plugin"</title>
<link>http://bbpress.org/forums/topic/latest-disscussions-plugin#post-5631</link>
<pubDate>Mon, 19 Mar 2007 20:49:42 +0000</pubDate>
<dc:creator>startribe</dc:creator>
<guid isPermaLink="false">5631@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks for the replies. I have updated the plugin, but now I am getting an errors on my wordpress pages:&#60;/p&#62;
&#60;p&#62;WordPress database error: [Table 'content._bbtopics' doesn't exist]&#60;br /&#62;
SELECT * FROM _bbtopics WHERE topic_status = 0 ORDER BY topic_time DESC LIMIT 50&#60;/p&#62;
&#60;p&#62;I am starting to research this, and if anyone else already knows what the problem might be, feel free to chime in.&#60;/p&#62;
&#60;p&#62;Best,&#60;br /&#62;
Orion
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Latest Disscussions Plugin"</title>
<link>http://bbpress.org/forums/topic/latest-disscussions-plugin#post-5627</link>
<pubDate>Mon, 19 Mar 2007 17:43:59 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">5627@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Haha, Atsutane, fantastic. :D Continually improving this plugin is great :D&#60;/p&#62;
&#60;p&#62;You spelt &#34;integrated&#34; intergrated by the way - luckily consistently through your code, so it works okay anyway. ^^ Better English is also &#34;in&#34; category rather than inside. Just if you want to know. :)
&#60;/p&#62;</description>
</item>
<item>
<title>Atsutane on "Latest Disscussions Plugin"</title>
<link>http://bbpress.org/forums/topic/latest-disscussions-plugin#post-5626</link>
<pubDate>Mon, 19 Mar 2007 17:23:34 +0000</pubDate>
<dc:creator>Atsutane</dc:creator>
<guid isPermaLink="false">5626@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Update the plugin already. Now u can set the length of the text from BbLD option page. Get it from bbPress plugin page.&#60;/p&#62;
&#60;p&#62;Refer to changelog for older update. Hope this gonna solve your problem :)
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "Latest Disscussions Plugin"</title>
<link>http://bbpress.org/forums/topic/latest-disscussions-plugin#post-5622</link>
<pubDate>Mon, 19 Mar 2007 09:37:15 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">5622@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It's not that hard to do. Just google on this and script/excamples will pop-up in no time. Basicly you will have to count the nr of letters and replace all other letters with ...&#60;/p&#62;
&#60;p&#62;I am at work else I could give an excample....&#60;/p&#62;
&#60;p&#62;... not very helpful I know just google :D
&#60;/p&#62;</description>
</item>
<item>
<title>startribe on "Latest Disscussions Plugin"</title>
<link>http://bbpress.org/forums/topic/latest-disscussions-plugin#post-5621</link>
<pubDate>Mon, 19 Mar 2007 08:38:21 +0000</pubDate>
<dc:creator>startribe</dc:creator>
<guid isPermaLink="false">5621@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey Community,&#60;/p&#62;
&#60;p&#62;We are getting closer to the launch of our site, and we are still having trouble with our bbpress title lengths interfering with our wordpress layout.&#60;/p&#62;
&#60;p&#62;You can see our bbpress forum locations spread through out the site.&#60;br /&#62;
&#60;a href=&#34;http://208.109.218.158&#34; rel=&#34;nofollow&#34;&#62;http://208.109.218.158&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Is there any way to put a limit on the length of titles so they don't break our site? We are using the same setup as described above.&#60;/p&#62;
&#60;p&#62;Any help would be appreciated, even if it means some sort of a temp css fix to hide overflow.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Orion
&#60;/p&#62;</description>
</item>
<item>
<title>Atsutane on "Latest bbPress Posts In Wordpress"</title>
<link>http://bbpress.org/forums/topic/latest-bbpress-posts-in-wordpress#post-5152</link>
<pubDate>Mon, 05 Mar 2007 09:58:00 +0000</pubDate>
<dc:creator>Atsutane</dc:creator>
<guid isPermaLink="false">5152@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yeah. Request already :) waiting for approval.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Latest bbPress Posts In Wordpress"</title>
<link>http://bbpress.org/forums/topic/latest-bbpress-posts-in-wordpress#post-5139</link>
<pubDate>Sun, 04 Mar 2007 15:32:11 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">5139@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;That would be great if you could do that Atsutane as it allows you to have the 'working' code up and the 'work in progress' code as well!   Just a thought!&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>

</channel>
</rss>
