<?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 User Favorites: smurfdude</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress Support Forums User Favorites: smurfdude</description>
<language>en</language>
<pubDate>Fri, 09 Jan 2009 12:18:58 +0000</pubDate>

<item>
<title>_ck_ on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/3#post-20877</link>
<pubDate>Fri, 21 Nov 2008 14:39:07 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">20877@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;cocotrp, you can exclude IDs by modifying the mysql queries and changing &#60;/p&#62;
&#60;p&#62;&#60;code&#62;WHERE user_status = 0&#60;/code&#62;&#60;br /&#62;
to&#60;br /&#62;
&#60;code&#62;WHERE user_status = 0 AND user_id NOT IN (1,2,3,4)&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;1,2,3,4 are the user_id's you don't want to be displayed.
&#60;/p&#62;</description>
</item>
<item>
<title>cocotrp on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/3#post-20842</link>
<pubDate>Thu, 20 Nov 2008 19:02:01 +0000</pubDate>
<dc:creator>cocotrp</dc:creator>
<guid isPermaLink="false">20842@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;How would I go about excluding specific user id's from display?  Thanks in advance...
&#60;/p&#62;</description>
</item>
<item>
<title>yogaboat on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/3#post-2876</link>
<pubDate>Wed, 03 Jan 2007 23:09:12 +0000</pubDate>
<dc:creator>yogaboat</dc:creator>
<guid isPermaLink="false">2876@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Is the config file the only place function.php looks for path info?
&#60;/p&#62;</description>
</item>
<item>
<title>ardentfrost on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-2875</link>
<pubDate>Wed, 03 Jan 2007 22:42:16 +0000</pubDate>
<dc:creator>ardentfrost</dc:creator>
<guid isPermaLink="false">2875@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;yeah, so, this is what's in functions.php (core file)&#60;/p&#62;
&#60;p&#62;&#60;code&#62;function bb_get_option( $option ) {&#60;br /&#62;
	global $bb;&#60;br /&#62;
	switch ( $option ) :&#60;br /&#62;
	case &#38;#39;uri&#38;#39; :&#60;br /&#62;
		return $bb-&#38;gt;domain . $bb-&#38;gt;path;&#60;br /&#62;
		break;&#60;br /&#62;
...&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;So, all it does it return those exact two things you posted concatenated together.  It makes no sense for the developed link to have a /forums/ in it.
&#60;/p&#62;</description>
</item>
<item>
<title>yogaboat on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-2874</link>
<pubDate>Wed, 03 Jan 2007 22:28:48 +0000</pubDate>
<dc:creator>yogaboat</dc:creator>
<guid isPermaLink="false">2874@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;arden, here's what's in the config file:&#60;br /&#62;
&#60;code&#62;$bb-&#38;gt;domain = &#38;#39;http://navfm.org&#38;#39;; &#60;br /&#62;
	$bb-&#38;gt;path   = &#38;#39;/bbpress/&#38;#39;&#60;/code&#62;&#60;br /&#62;
Is that what you mean?
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-2872</link>
<pubDate>Wed, 03 Jan 2007 22:25:27 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">2872@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;lol, that is the way it seems to work!&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>ardentfrost on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-2871</link>
<pubDate>Wed, 03 Jan 2007 22:25:03 +0000</pubDate>
<dc:creator>ardentfrost</dc:creator>
<guid isPermaLink="false">2871@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;since I use the function &#60;code&#62;bb_get_option(&#38;#39;uri&#38;#39;)&#60;/code&#62; to build the link, I have no clue why it would be showing up as /forums instead of /bbpress for you.  I assume it's correct in your config.php file?
&#60;/p&#62;</description>
</item>
<item>
<title>yogaboat on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-2870</link>
<pubDate>Wed, 03 Jan 2007 22:18:28 +0000</pubDate>
<dc:creator>yogaboat</dc:creator>
<guid isPermaLink="false">2870@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This was like one of those light bulb times for me - like years ago when I realized you could have an image link inside an href tag. Now I know you can have a php snippet inside one as well.  It's the little things. :D  Thanks again -
&#60;/p&#62;</description>
</item>
<item>
<title>yogaboat on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-2869</link>
<pubDate>Wed, 03 Jan 2007 22:04:25 +0000</pubDate>
<dc:creator>yogaboat</dc:creator>
<guid isPermaLink="false">2869@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;That I can do! (I wasn't sure if I should delete any &#38;lt;?php ....&#38;gt; stuff, but that works!) Thank you very much for your help and patience!
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-2865</link>
<pubDate>Wed, 03 Jan 2007 20:58:11 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">2865@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Make it simple for now until Ardenfrost can answer!   Change that line to:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;li class=&#38;quot;view&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;http://navfm.org/bbpress/mlist.php&#38;quot;&#38;gt;Member List&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Just add in your actual URL (hardcode it!)&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>yogaboat on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-2864</link>
<pubDate>Wed, 03 Jan 2007 20:50:06 +0000</pubDate>
<dc:creator>yogaboat</dc:creator>
<guid isPermaLink="false">2864@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Sorry, that was supposed to read, &#34;adding this line:&#60;br /&#62;
&#60;code&#62;&#38;lt;li class=&#38;quot;view&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php bb_memberlist_link(); ?&#38;gt;&#38;quot;&#38;gt;Member List&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#60;/code&#62;&#34;
&#60;/p&#62;</description>
</item>
<item>
<title>yogaboat on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-2863</link>
<pubDate>Wed, 03 Jan 2007 20:49:17 +0000</pubDate>
<dc:creator>yogaboat</dc:creator>
<guid isPermaLink="false">2863@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The only bit of code I changed in front_page.php was adding this line:&#60;br /&#62;
&#38;lt;li class=&#34;view&#34;&#38;gt;&#60;a&#62;&#34;&#38;gt;Member List&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;code&#62;?php if ( $bb_current_user-&#38;gt;ID ) : ?&#38;gt;&#60;br /&#62;
&#38;lt;div id=&#38;quot;viewdiv&#38;quot;&#38;gt;&#60;br /&#62;
&#38;lt;h2&#38;gt;&#38;lt;?php _e(&#38;#39;Views&#38;#39;); ?&#38;gt;&#38;lt;/h2&#38;gt;&#60;br /&#62;
&#38;lt;ul id=&#38;quot;views&#38;quot;&#38;gt;&#60;br /&#62;
&#38;lt;?php foreach ( get_views() as $view =&#38;gt; $title ) : ?&#38;gt;&#60;br /&#62;
&#38;lt;li class=&#38;quot;view&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php view_link(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php view_name(); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#60;br /&#62;
&#38;lt;?php endforeach; ?&#38;gt;&#60;br /&#62;
&#38;lt;li class=&#38;quot;view&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php bb_memberlist_link(); ?&#38;gt;&#38;quot;&#38;gt;Member List&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#60;br /&#62;
&#38;lt;/ul&#38;gt;&#60;br /&#62;
&#38;lt;/div&#38;gt;&#60;br /&#62;
&#38;lt;?php endif; else : // $forums ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I'm sure it's something simple but i don't know php. :(
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-2862</link>
<pubDate>Wed, 03 Jan 2007 20:23:39 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">2862@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I would go to front-page.php and check that the code you entered for the link is /bbpress/mlist.php and not /forum/mlist.php because you would of had to enter the link yourself.&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>yogaboat on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-2861</link>
<pubDate>Wed, 03 Jan 2007 20:15:49 +0000</pubDate>
<dc:creator>yogaboat</dc:creator>
<guid isPermaLink="false">2861@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;eeek. me again. I have bbpress installed in a folder called 'bbpress' (not 'forum') in my root directory. (Site is here: &#60;a href=&#34;http://navfm.org/bbpress&#34; rel=&#34;nofollow&#34;&#62;http://navfm.org/bbpress&#60;/a&#62;) The members link shows up fine in the Views list, but takes me to this error: &#60;/p&#62;
&#60;p&#62;&#34;The requested URL /forums/mlist.php was not found on this server.&#34;&#60;/p&#62;
&#60;p&#62;I do have pretty permalinks enabled, if that matters. I tried to find where it calls the /forums directory in the plugin files but don't know what I'm looking for exactly.
&#60;/p&#62;</description>
</item>
<item>
<title>yogaboat on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-2848</link>
<pubDate>Wed, 03 Jan 2007 16:57:11 +0000</pubDate>
<dc:creator>yogaboat</dc:creator>
<guid isPermaLink="false">2848@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks guys! Y'all are a huge help to way unpolished hacks like myself. :)
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-2845</link>
<pubDate>Wed, 03 Jan 2007 15:41:14 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">2845@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You uploaded the files to the right place!   bbPress will try and see if a file is located in those 2 directories before defaulting back to the bb-templates/ directory!&#60;/p&#62;
&#60;p&#62;As for the link to thte member list page, most people have been adding that in their 'views' section of front-page.php.    Copy front-page.php from /bb-templates/, edit the file to include the link, re-upload into my-templates/&#60;/p&#62;
&#60;p&#62;That way, if it doesn't work (the way you edited it), you can delete front-page.php from my-templates and bbPress will use the original again in bb-templates!   Nice eh!&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>ardentfrost on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-2844</link>
<pubDate>Wed, 03 Jan 2007 15:40:07 +0000</pubDate>
<dc:creator>ardentfrost</dc:creator>
<guid isPermaLink="false">2844@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;On my server I have a subdirectory called &#34;forums&#34; and the my- folders went into that directory.  That's the same directory I unzipped the bbpress files to.  Other folders in that directory are bb-admin, bb-cache, bb-images, etc...&#60;/p&#62;
&#60;p&#62;I put my link in the file front-page.php in my-templates (it's initial home is bb-templates, you have to copy it over into my-templates and change it).  I just stuck it under the &#34;Views&#34; section (you can see the result on &#60;a href=&#34;http://www.rayd.org/forums/&#34; rel=&#34;nofollow&#34;&#62;http://www.rayd.org/forums/&#60;/a&#62; but you have to login) or you can do what Spencer did and put it in your header so the link can be seen on every page (you can see that on &#60;a href=&#34;http://spencerp.net/forums/&#34; rel=&#34;nofollow&#34;&#62;http://spencerp.net/forums/&#60;/a&#62; and you don't even have to login).  The only thing about putting it in the header is you need to surround it with div tags and using css to place it.
&#60;/p&#62;</description>
</item>
<item>
<title>yogaboat on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-2842</link>
<pubDate>Wed, 03 Jan 2007 15:17:11 +0000</pubDate>
<dc:creator>yogaboat</dc:creator>
<guid isPermaLink="false">2842@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi - I downloaded  v.73c of this plugin and have a couple of questions about directories and where to put the link.  &#60;/p&#62;
&#60;p&#62;1. I created a my-plugins and a my-templates directory in the root of my bbpress directory, and uploaded the files as directed in the README file. Is that correct, or do those new my- directories go someplace else?&#60;/p&#62;
&#60;p&#62;2. Into which file would I insert the link to the member list?&#60;/p&#62;
&#60;p&#62;Thanks for your patience with this bbpress newb.
&#60;/p&#62;</description>
</item>
<item>
<title>ardentfrost on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-2464</link>
<pubDate>Wed, 20 Dec 2006 16:31:44 +0000</pubDate>
<dc:creator>ardentfrost</dc:creator>
<guid isPermaLink="false">2464@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Trent: I'll be updating memberlist soon to add a couple features, but I need to talk to you about fixes for wp integration (I think there are 2 that need to be applied, but I need your input and testing).  IM me when you read this.
&#60;/p&#62;</description>
</item>
<item>
<title>suleiman on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-2446</link>
<pubDate>Wed, 20 Dec 2006 04:57:06 +0000</pubDate>
<dc:creator>suleiman</dc:creator>
<guid isPermaLink="false">2446@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;using it right now, and it's working great! Thanks a ton for this.
&#60;/p&#62;</description>
</item>
<item>
<title>ardentfrost on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-2195</link>
<pubDate>Mon, 11 Dec 2006 05:08:47 +0000</pubDate>
<dc:creator>ardentfrost</dc:creator>
<guid isPermaLink="false">2195@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Good point, I'll see what I can do.  It'll probably be a css fix (can set table widths in there).
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-2158</link>
<pubDate>Sun, 10 Dec 2006 00:19:09 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">2158@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Sorry Ardentfrost.   One more thing.   If someone puts a URL for a website that is stupid long (spammers of course), it will make the memberlist go outside of the page.   Is there a way to limited the characters that the website can be when listed in the memberlist?&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>spencerp on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-1907</link>
<pubDate>Sat, 02 Dec 2006 19:38:38 +0000</pubDate>
<dc:creator>spencerp</dc:creator>
<guid isPermaLink="false">1907@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Awesome!! Done!.. You're the greatest, whee!! :D&#60;br /&#62;
&#60;a href=&#34;http://spencerp.net/forums/mlist&#34; rel=&#34;nofollow&#34;&#62;http://spencerp.net/forums/mlist&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;spencerp
&#60;/p&#62;</description>
</item>
<item>
<title>ardentfrost on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-1906</link>
<pubDate>Sat, 02 Dec 2006 19:30:54 +0000</pubDate>
<dc:creator>ardentfrost</dc:creator>
<guid isPermaLink="false">1906@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;glad it works :D&#60;/p&#62;
&#60;p&#62;And spencer, since you have my post count plugin also, you can uncomment those lines in memberlist.php :D
&#60;/p&#62;</description>
</item>
<item>
<title>spencerp on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-1905</link>
<pubDate>Sat, 02 Dec 2006 19:29:03 +0000</pubDate>
<dc:creator>spencerp</dc:creator>
<guid isPermaLink="false">1905@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yup, it works for me if I have pretty permalinks, and no pretty permalinks set. I did exactly as said on here:&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/documentation/faq/#pretty-permalinks&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/documentation/faq/#pretty-permalinks&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;And she's working.. see it in action here:&#60;br /&#62;
&#60;a href=&#34;http://spencerp.net/forums/&#34; rel=&#34;nofollow&#34;&#62;http://spencerp.net/forums/&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://spencerp.net/forums/mlist&#34; rel=&#34;nofollow&#34;&#62;http://spencerp.net/forums/mlist&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;YAY!! Thanks again!! ;) :)&#60;/p&#62;
&#60;p&#62;spencerp
&#60;/p&#62;</description>
</item>
<item>
<title>ardentfrost on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-1903</link>
<pubDate>Sat, 02 Dec 2006 19:23:53 +0000</pubDate>
<dc:creator>ardentfrost</dc:creator>
<guid isPermaLink="false">1903@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;spencer, I have permalinks enabled and it works for me, trent doesn't and it works for him now too (and you too), so I think that bug is fixed.&#60;/p&#62;
&#60;p&#62;Trent, I know what you mean... that's why that deletion part of the plugin is so cool ;)  I can delete all spam users in literally a few seconds.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-1902</link>
<pubDate>Sat, 02 Dec 2006 19:13:47 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">1902@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Not really important right now anyways!   Love the plugin!  I just hid it a little bit by putting it in a sticky post because I find that spammers love to register just to get a link on an actual page.   That is annoying and really distorts the memberlist.  I might even call it by a different name and make it so .htaccess blocks it from hitting the search engines.&#60;/p&#62;
&#60;p&#62;The joys of spammers.   &#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>spencerp on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-1901</link>
<pubDate>Sat, 02 Dec 2006 19:12:17 +0000</pubDate>
<dc:creator>spencerp</dc:creator>
<guid isPermaLink="false">1901@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi guys, sorry.. was offline for a bit there. I didn't have pretty permalinks enabled, and still don't. But, after uploading those new files of your's. It seems to be working fine now..&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://spencerp.net/forums/&#34; rel=&#34;nofollow&#34;&#62;http://spencerp.net/forums/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Would you like me to try with pretty permalinks enabled then too, or..? Please let me know ok, I'll test it. ;) :)&#60;/p&#62;
&#60;p&#62;spencerp
&#60;/p&#62;</description>
</item>
<item>
<title>ardentfrost on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-1900</link>
<pubDate>Sat, 02 Dec 2006 19:08:49 +0000</pubDate>
<dc:creator>ardentfrost</dc:creator>
<guid isPermaLink="false">1900@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I thought about that, but there's two things: 1. post count is another plugin altogether... not too big of a deal, making a function that is commented out by default is easy to do.  2. Post count isn't a db entry, so to do it I'd have to sort results after I got them (whereas now I do it all with SQL queries).&#60;/p&#62;
&#60;p&#62;I do hope to add it in at a later time, I just gotta figure out the best way to do it first :)
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Plugin - Member List"</title>
<link>http://bbpress.org/forums/topic/plugin-member-list/page/2#post-1899</link>
<pubDate>Sat, 02 Dec 2006 18:51:30 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">1899@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ok....last request!   How about option to sort by post count as well (if applicable!)&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>

</channel>
</rss>
