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

		<item>
			<title>freequency on "[resolved] [resolved] My bbpress HOW TO / tutorial"</title>
			<link>http://bbpress.org/forums/topic/my-bbpress-how-to-tutorial#post-97402</link>
			<pubDate>Fri, 20 Jan 2012 13:55:38 +0000</pubDate>
			<dc:creator>freequency</dc:creator>
			<guid isPermaLink="false">97402@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I love bbPress for it's simplistic design, but setting it up can be a bitch especially if you don't care for standard sidebars &#38; widgets like me, so:<br />
Getting bbpress to work wonders is as easy as 0,1,2,3,4,5,6,7,8,9,10,11,12!!<br />
On 2012-01-19, this is what I did to originally setup my <a href="http://forums.freequency.org/">forums for a free wireless network</a>:</p>
<p><strong>0)</strong> Pre-clarification: [???] means some number, like twenty[???] means twentyten or twentyeleven</p>
<p><strong>1)</strong> Downloaded most recent WordPress, setup database and installed it.</p>
<p><strong>2)</strong> Installed bbpress:<br />
go to <a href="http://yoursite.dom/wp-admin/" rel="nofollow">http://yoursite.dom/wp-admin/</a> &#62; Log in to admin &#62; Plugins &#62; Add New &#62; search for "bbpress" &#62; Install Now</p>
<p><strong>3)</strong> Copied contents of bbpress theme folder to wordpress theme folder:<br />
/wp-content/plugins/bbpress/bbp-themes/bbp-twenty[???] to /wp-content/themes<br />
(this is done ONLY so that we can select the bbforums theme and it's handy templates: Please note that you should only make modifications in the /wp-content/plugins/bbpress/bbp-themes/bbp-twenty[???] folder NOT the /wp-content/themes/bbp-twenty[???] folder as the bbpress plugin will not read those)</p>
<p><strong>4)</strong> Switched to the bbpress theme<br />
Log in to admin &#62; Appearance &#62; Themes &#62; under the "Available Themes" section I activated the "bbPress (Twenty [???])" Theme</p>
<p><strong>5)</strong> Created my home page, login page, register page, and lost password page:<br />
Log in to admin &#62; Pages &#62; Add New &#62; set title to "Home" &#124; right hand column &#62; Page Attributes &#62; set Templates to "bbPress - Forums (index)"<br />
Log in to admin &#62; Pages &#62; Add New &#62; set title to "Login" &#124; right hand column &#62; Page Attributes &#62; set Templates to "bbPress - User Login"<br />
Log in to admin &#62; Pages &#62; Add New &#62; set title to "Register" &#124; right hand column &#62; Page Attributes &#62; set Templates to "bbPress - User Register"<br />
Log in to admin &#62; Pages &#62; Add New &#62; set title to "Lost Password" &#124; right hand column &#62; Page Attributes &#62; set Templates to "bbPress - User Lost Password"</p>
<p><strong>6)</strong> Switched WordPress frontpage from the blog to my home/forums page:<br />
Log in to admin &#62; Settings &#62; Reading &#62; Front page displays &#62; Clicked "a static page..." &#62; set front page to "Home" (and left posts page blank)</p>
<p><strong>7)</strong> Allowed New Users to Register<br />
Log in to admin &#62; Settings &#62; General &#62; Under Membership I checked "Anyone can register"</p>
<p><strong>8)</strong> Created and Modified my header, footer, and sidebar files:<br />
All theme modifications MUST be done within the wp-content/plugins/bbpress/bbp-themes/bbp-twenty[???] folder and not the folder you just copied to the wordpress theme folder as bbpress will only read files within in it's own local plugin (see <a href="http://trac.bbpress.org/ticket/3">#3</a>).<br />
The theme doesn't come with these files installed, so copy them from another theme like twenty[???]:<br />
wp-content/themes/twenty[???]/header.php to wp-content/plugins/bbpress/bbp-themes/bbp-twenty[???]<br />
wp-content/themes/twenty[???]/footer.php to wp-content/plugins/bbpress/bbp-themes/bbp-twenty[???]<br />
wp-content/themes/twenty[???]/sidebar.php to wp-content/plugins/bbpress/bbp-themes/bbp-twenty[???]<br />
I then stripped them to my satisfaction making sure to keep WordPress' header action hook, wp_head();, and then styled them accordingly.<br />
One of the things I added to the header.php was my menu and such:<br />
<code><br />
&#60;?php<br />
	$text .= '&#60;options&#62;';<br />
	if(is_user_logged_in()) {<br />
		global $current_user;<br />
		get_currentuserinfo();<br />
		$text .= 'You are logged in as <a href="/wp-admin/profile.php">'.$current_user-&#62;display_name.'</a> <br /><a href="/wp-admin/profile.php">Your Profile</a> &#124; <a href="/wp-admin/edit.php?post_type=topic">Your Topics</a> &#124; <a href="/wp-admin/edit.php?post_type=reply">Your Replies</a> &#124; <a href="'.wp_logout_url().'">Logout</a>';<br />
	}<br />
	else $text .= '<a href="?page_id=8">Login</a> &#124; <a href="?page_id=6">Register</a> &#124; <a href="?page_id=10">Lost Password</a>';<br />
	$text .= "<br />" . get_search_form(false);<br />
	$text .= '&#60;/options&#62;';</p>
<p>	echo $text;</p>
<p>?&#62;<br />
</code><br />
If a visitor is not logged in the above menu will show links to the pages I just created in <a href="http://trac.bbpress.org/ticket/5">#5</a>, but make sure that the page_id matches the correct page.  You can do this by checking the Permalink of that page:<br />
Log in to admin &#62; Pages &#62; All Pages &#62; select the page your interested in &#62; notice the page_id in the permalink &#38; make sure it matches in the header file.<br />
If a visitor is logged in, it will show who you are logged in as, give you a link to:<br />
your profile (/wp-admin/profile.php)<br />
your profile (/wp-admin/edit.php?post_type=topic)<br />
your posts (/wp-admin/edit.php?post_type=reply)<br />
and a link to logout ( wp_logout_url() )<br />
This menu will then print a search form.</p>
<p><strong>9)</strong> Installed Search bbPress plugin:<br />
Log in to admin &#62; Plugins &#62; Add New &#62; search for "search bbpress" &#62; Install Now<br />
If you don't do this, wordpress' search form won't search your forums.</p>
<p><strong>10)</strong>wordpress avatars &#38; bbPress Avatars:<br />
As of 2012-01-19, the latest version of WordPress (and therefore bbPress) has Gravitars support built in. So, if you sign up at <a href="https://en.gravatar.com/site/signup" rel="nofollow">https://en.gravatar.com/site/signup</a>, you can associate an email address with your avatar.  And if you also use that email address as the one you used for your wordpress/bbpress account then bbpress and wordpress will automatically show that avatar associated with the email address you supplied to gravitar.</p>
<p>Simple Local Avatars:<br />
If you're like me, you don't want to force your visitors to sign up with gravitar, so the simplest avatar solution I found was to install the "Simple Local Avatars" Plugin:<br />
Log in to admin &#62; Plugins &#62; Add New &#62; search for "Simple Local Avatars" &#62; Install Now<br />
An avatar section will now display at the bottom of your profile page at /wp-admin/profile.php</p>
<p><strong>11)</strong> Consolidating bbPress profile pages<br />
bbPress gives you the choice of editing your profile in two places, but since avatars only show up at /wp-admin/profile.php and not index.php?bbp_user=[???]&#38;edit=1 we will consolidate the profile editing to just /wp-admin/profile.php . To do this, we add the follwoing code to the end (but before the ?&#62; ) of the wp-content/plugins/bbpress/bbp-themes/bbp-twenty[???]/functions.php file:<br />
<code><br />
add_filter('bbp_get_user_edit_profile_url', 'my_bbp_get_user_edit_profile_url', 10, 0);<br />
function my_bbp_get_user_edit_profile_url () {<br />
	return "/wp-admin/profile.php";<br />
}<br />
</code><br />
This basically overwrites the bbp_get_user_edit_profile_url function whereever it's used.</p>
<p><strong>12)</strong> I'm done!  For now at least.  Hope that helps.  Those were the things I cared about.
</p>]]></description>
					</item>
		<item>
			<title>m-jay on "Avatars 1/4 of their size"</title>
			<link>http://bbpress.org/forums/topic/avatars-14-of-their-size#post-90416</link>
			<pubDate>Fri, 05 Aug 2011 13:20:05 +0000</pubDate>
			<dc:creator>m-jay</dc:creator>
			<guid isPermaLink="false">90416@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>OK<br />
Thank you,</p>
<p>Looking good now !
</p>]]></description>
					</item>
		<item>
			<title>Ashfame on "Avatars 1/4 of their size"</title>
			<link>http://bbpress.org/forums/topic/avatars-14-of-their-size#post-90353</link>
			<pubDate>Wed, 03 Aug 2011 13:35:22 +0000</pubDate>
			<dc:creator>Ashfame</dc:creator>
			<guid isPermaLink="false">90353@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>You will have to deal with that padding anyway.</p>
<p>To change the avatar size, create a new theme by copying the bbpress-twentyten theme to your WordPress themes directory and changing its name in style.css and then at line 53 of the file <code>bbpress/loop-forums.php</code> (can be the wrong file) look for <code>bbp_author_link</code> function. You will see the size as 14 there, change it to a bigger size.
</p>]]></description>
					</item>
		<item>
			<title>m-jay on "Avatars 1/4 of their size"</title>
			<link>http://bbpress.org/forums/topic/avatars-14-of-their-size#post-90350</link>
			<pubDate>Wed, 03 Aug 2011 12:57:10 +0000</pubDate>
			<dc:creator>m-jay</dc:creator>
			<guid isPermaLink="false">90350@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thank you Ashfame, </p>
<p>But<br />
This is changing the size of the grey squares containing the Gravatar ...<br />
The size of the Gravatar remains the same, no matter which values I change here ...</p>
<p>I would like my image to fit the size of the grey Squares.</p>
<p>Any idea ?
</p>]]></description>
					</item>
		<item>
			<title>Ashfame on "Avatars 1/4 of their size"</title>
			<link>http://bbpress.org/forums/topic/avatars-14-of-their-size#post-90348</link>
			<pubDate>Wed, 03 Aug 2011 09:12:38 +0000</pubDate>
			<dc:creator>Ashfame</dc:creator>
			<guid isPermaLink="false">90348@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Its a prob with your CSS,<br />
At line 5 of colors.css<br />
<pre><code>img.avatar {
padding: 0px 10px 10px 0px;
float: left;
}</code></pre>
<p>This padding is ruining it. Other than that size is ok, you can change it too though.
</p>]]></description>
					</item>
		<item>
			<title>m-jay on "Avatars 1/4 of their size"</title>
			<link>http://bbpress.org/forums/topic/avatars-14-of-their-size#post-90346</link>
			<pubDate>Wed, 03 Aug 2011 09:03:33 +0000</pubDate>
			<dc:creator>m-jay</dc:creator>
			<guid isPermaLink="false">90346@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi</p>
<p>Can someone have a look here :<br />
<a href="http://www.mjtutoriels.com/blog/qui-dit-quoi/" rel="nofollow">http://www.mjtutoriels.com/blog/qui-dit-quoi/</a></p>
<p>My Gravatars are all 1/4 of their expected size in the bbpress Forums ...</p>
<p>(But in the page footer, they all look great).</p>
<p>I don't know if it's a problem with the theme or with bbpress plugin ?</p>
<p>Thank you 4 help
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-71247</link>
			<pubDate>Sat, 17 Jul 2010 20:18:11 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">71247@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>This will probably be low on the priority list but tags are no longer being imported from the <code>readme.txt</code> in the plugin section, so any updated plugin since the bbpress.org 2.0 upgrade has lost it's tags.
</p>]]></description>
					</item>
		<item>
			<title>mr_pelle on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-71227</link>
			<pubDate>Sat, 17 Jul 2010 09:17:02 +0000</pubDate>
			<dc:creator>mr_pelle</dc:creator>
			<guid isPermaLink="false">71227@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>bbPress 2.0 milestone was removed when "1.2" was set, now it is merged into Future Release... =P</p>
<p>Anyway, we'd need someone to actually take a look and submit those patches: I've already opened tickets about bbPress.org bugs in the past weeks but a lot of them are still there...
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-71224</link>
			<pubDate>Sat, 17 Jul 2010 07:52:03 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">71224@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>There actually is a section on TRAC for  "bbpress.org website" to report bugs, so I am going to suggest we start posting there and fill trac with trackable bug reports that can be fulfilled and commented on individually?</p>
<p><a href="http://trac.bbpress.org/newticket" rel="nofollow">http://trac.bbpress.org/newticket</a></p>
<p>go to "component" and select "bbpress.org website"</p>
<p>feel free to still post them here but on TRAC is even better too
</p>]]></description>
					</item>
		<item>
			<title>Milan Dinić on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-71111</link>
			<pubDate>Thu, 15 Jul 2010 16:55:57 +0000</pubDate>
			<dc:creator>Milan Dinić</dc:creator>
			<guid isPermaLink="false">71111@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>If anyone reads this, link to download page from blog is broken.
</p>]]></description>
					</item>
		<item>
			<title>Gautam on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-71110</link>
			<pubDate>Thu, 15 Jul 2010 16:51:32 +0000</pubDate>
			<dc:creator>Gautam</dc:creator>
			<guid isPermaLink="false">71110@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>The disorder of posts on profile page is related to <a href="http://trac.bbpress.org/ticket/1301">#1301</a>
</p>]]></description>
					</item>
		<item>
			<title>mr_pelle on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-71109</link>
			<pubDate>Thu, 15 Jul 2010 16:38:17 +0000</pubDate>
			<dc:creator>mr_pelle</dc:creator>
			<guid isPermaLink="false">71109@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>It's probably related to this: <a href="http://trac.bbpress.org/ticket/1310" rel="nofollow">http://trac.bbpress.org/ticket/1310</a>
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-71108</link>
			<pubDate>Thu, 15 Jul 2010 16:31:49 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">71108@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>That has been like that for a while.  </p>
<p><a href="http://bbpress.org/forums/topic/all-member-names-anonymous-on-front-page-bbpressorg#post-70653" rel="nofollow">http://bbpress.org/forums/topic/all-member-names-anonymous-on-front-page-bbpressorg#post-70653</a>
</p>]]></description>
					</item>
		<item>
			<title>kevinjohngallagher on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-71107</link>
			<pubDate>Thu, 15 Jul 2010 15:49:27 +0000</pubDate>
			<dc:creator>kevinjohngallagher</dc:creator>
			<guid isPermaLink="false">71107@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Homepage is broken again.<br />
Says everyone is Anonymous.
</p>]]></description>
					</item>
		<item>
			<title>kevinjohngallagher on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-70986</link>
			<pubDate>Tue, 13 Jul 2010 23:02:19 +0000</pubDate>
			<dc:creator>kevinjohngallagher</dc:creator>
			<guid isPermaLink="false">70986@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Profiles are no longer showing posts in the Recent Replies in the corect order. Or actually in any order. Do people actually test this before /after they push it live?
</p>]]></description>
					</item>
		<item>
			<title>Abdessamad Idrissi on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-70961</link>
			<pubDate>Tue, 13 Jul 2010 14:04:43 +0000</pubDate>
			<dc:creator>Abdessamad Idrissi</dc:creator>
			<guid isPermaLink="false">70961@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>a temporary fix is to search bbpress through google:</p>
<p>wysiwyg site:http://bbpress.org/plugins
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-70652</link>
			<pubDate>Fri, 02 Jul 2010 15:57:38 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">70652@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Not sure who is working on it, if anyone, but it's not me.
</p>]]></description>
					</item>
		<item>
			<title>mr_pelle on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-70627</link>
			<pubDate>Fri, 02 Jul 2010 08:16:00 +0000</pubDate>
			<dc:creator>mr_pelle</dc:creator>
			<guid isPermaLink="false">70627@http://bbpress.org/forums/</guid>
			<description><![CDATA[<blockquote><p>I just noticed that download links at Download page should use a background image, but it cannot be found at the moment.</p>
<p>Full background attribute: url(&#38;quot;images/button-grad.png&#38;quot;) repeat-x scroll left top <a href="http://trac.bbpress.org/ticket/333333">#333333</a> </p></blockquote>
<p>Wow, now background attribute is gone, so download links are nearly invisible... =P
</p>]]></description>
					</item>
		<item>
			<title>kevinjohngallagher on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-70607</link>
			<pubDate>Thu, 01 Jul 2010 21:53:09 +0000</pubDate>
			<dc:creator>kevinjohngallagher</dc:creator>
			<guid isPermaLink="false">70607@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I contacted him through his personal blog (which I felt very guilty about incidently).</p>
<p>I'm seeing him in Manchester in 3 weeks for the WordCamp, and was rather hoping my first sentance would be "thanks so much for the help" and not have him see a middle aged man crying the whole way through the weekend.</p>
<p>He didn't disappoint.</p>
<p><a href="http://backpress.automattic.com/ticket/18" rel="nofollow">http://backpress.automattic.com/ticket/18</a> (the blocker for 1.0.3) and <a href="http://backpress.automattic.com/ticket/25" rel="nofollow">http://backpress.automattic.com/ticket/25</a> (the annoying -&#38;gt; bug) have both been fixed and closed.</p>
<p>If you're listening BackPress team, first drinks on me!</p>
<p>Thanks<br />
Kev
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-70606</link>
			<pubDate>Thu, 01 Jul 2010 21:16:10 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">70606@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>You must have summoned Westi somehow.</p>
<p><a href="http://backpress.automattic.com/ticket/18" rel="nofollow">http://backpress.automattic.com/ticket/18</a>
</p>]]></description>
					</item>
		<item>
			<title>kevinjohngallagher on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-70569</link>
			<pubDate>Thu, 01 Jul 2010 14:11:23 +0000</pubDate>
			<dc:creator>kevinjohngallagher</dc:creator>
			<guid isPermaLink="false">70569@http://bbpress.org/forums/</guid>
			<description><![CDATA[<blockquote><p>
All links to plugins from the plugin browser link to: <a href="http://bbpress.org/plugins/topic/#post-" rel="nofollow">http://bbpress.org/plugins/topic/#post-</a></p>
<p>Can be seen/reproduced here: <a href="http://bbpress.org/plugins/search.php?q=test" rel="nofollow">http://bbpress.org/plugins/search.php?q=test</a>
</p></blockquote>
<p><a href="http://bbpress.org/forums/topic/whoa/page/5#post-70519" rel="nofollow">http://bbpress.org/forums/topic/whoa/page/5#post-70519</a>
</p>]]></description>
					</item>
		<item>
			<title>hpguru on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-70567</link>
			<pubDate>Thu, 01 Jul 2010 13:34:05 +0000</pubDate>
			<dc:creator>hpguru</dc:creator>
			<guid isPermaLink="false">70567@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>What plugin you search? Maybe we help you?
</p>]]></description>
					</item>
		<item>
			<title>nathan12343 on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/5#post-70549</link>
			<pubDate>Wed, 30 Jun 2010 19:31:46 +0000</pubDate>
			<dc:creator>nathan12343</dc:creator>
			<guid isPermaLink="false">70549@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I'm loving the new theme but as someone mentioned above the plugin search page isn't working. The title comes through but the link is broken. Can't get to the plugin that I want!
</p>]]></description>
					</item>
		<item>
			<title>mr_pelle on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/5#post-70540</link>
			<pubDate>Wed, 30 Jun 2010 14:11:59 +0000</pubDate>
			<dc:creator>mr_pelle</dc:creator>
			<guid isPermaLink="false">70540@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I just noticed that download links at Download page should use a background image, but it cannot be found at the moment.</p>
<p>Full background attribute: <code>url(&#38;quot;images/button-grad.png&#38;quot;) repeat-x scroll left top #333333</code>
</p>]]></description>
					</item>
		<item>
			<title>kevinjohngallagher on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/5#post-70537</link>
			<pubDate>Wed, 30 Jun 2010 13:29:23 +0000</pubDate>
			<dc:creator>kevinjohngallagher</dc:creator>
			<guid isPermaLink="false">70537@http://bbpress.org/forums/</guid>
			<description><![CDATA[<blockquote><p>
If we fix it here, then there's no pressure to fix it in BackPress.</p>
</blockquote>
<p>Chris my friend,</p>
<p>We're less than 10 hours away from that bug being present for it's 3rd month.</p>
<p>Emails have been sent, Tweets have been sent, Trac reports have been filed, bug reports have been filed, patches have been submitted, Trac has been bumped (including by yourself), forum posts have been written, I've emailled Matt and Sam (though infairness it's neither of these guys fault) etc etc.</p>
<p>I've even emailled Westi, who I'm looking forward to meet in 3 weeks in Manchester.</p>
<p>Nothing, nil, nada, zilch, zero, tumbleweed.</p>
<p>I'm not sure if we have any leverage to apply any pressure, because if we do - it ain't working. At some stage, and that day might not be today of course, but at some stage we'll have to accept that maybe there is no pressure on anyone to fix it in BackPress.
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/5#post-70529</link>
			<pubDate>Wed, 30 Jun 2010 12:20:42 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">70529@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I don't think I have any ability to update the code that runs at the plugins site, so I can't fix the plugins search.  I believe the search is fixed here in the forums so if they update the code at plugins, it will be fixed.</p>
<p>I don't know if I can fix the &#38;lt; &#38;lt; thing locally (in an external?) but I would rather they just fix the BackPress bug properly.  If we fix it here, then there's no pressure to fix it in BackPress.
</p>]]></description>
					</item>
		<item>
			<title>kevinjohngallagher on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/5#post-70522</link>
			<pubDate>Wed, 30 Jun 2010 09:42:27 +0000</pubDate>
			<dc:creator>kevinjohngallagher</dc:creator>
			<guid isPermaLink="false">70522@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Yes mate it is, but it's mental that it's still not been fixed.</p>
<p>The person who is doing these updates could even apply your patch to our own version of backPress on this site and it would be sorted.
</p>]]></description>
					</item>
		<item>
			<title>Gautam on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/5#post-70521</link>
			<pubDate>Wed, 30 Jun 2010 08:53:46 +0000</pubDate>
			<dc:creator>Gautam</dc:creator>
			<guid isPermaLink="false">70521@http://bbpress.org/forums/</guid>
			<description><![CDATA[<blockquote><p>And seriously, what is up with these &#38;gt;&#38;gt;&#38;gt; tags? It's about to span into it's 3rd month of not working. We can only help so much... </p></blockquote>
<p>That is a BackPress bug, I think you know about it.. - <a href="http://backpress.automattic.com/ticket/25" rel="nofollow">http://backpress.automattic.com/ticket/25</a>
</p>]]></description>
					</item>
		<item>
			<title>kevinjohngallagher on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/5#post-70519</link>
			<pubDate>Wed, 30 Jun 2010 08:39:27 +0000</pubDate>
			<dc:creator>kevinjohngallagher</dc:creator>
			<guid isPermaLink="false">70519@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>You know, I love the silent updates to the site; but at the risk of sounding ungraetful - <strong> Could you please TEST the chanegs after you've made them Live?? </strong></p>
<p>All links to plugins from the plugin browser link to: <a href="http://bbpress.org/plugins/topic/#post-" rel="nofollow">http://bbpress.org/plugins/topic/#post-</a></p>
<p>Can be seen/reproduced here: <a href="http://bbpress.org/plugins/search.php?q=test" rel="nofollow">http://bbpress.org/plugins/search.php?q=test</a></p>
<p>And seriously, what is up with these &#38;gt;&#38;gt;&#38;gt; tags? It's about to span into it's 3rd month of not working. We can only help so much...
</p>]]></description>
					</item>
		<item>
			<title>mr_pelle on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/5#post-70517</link>
			<pubDate>Wed, 30 Jun 2010 07:50:55 +0000</pubDate>
			<dc:creator>mr_pelle</dc:creator>
			<guid isPermaLink="false">70517@http://bbpress.org/forums/</guid>
			<description><![CDATA[<blockquote><p>I don't think Matt knows that we are changing the version manually. It would be nice to have that updated automatically, but I don't have enough access to make that happen with subversion, so I just change it manually.</p></blockquote>
<p>I know, I know, I just thought it was funny that he did not even look at any last commit...
</p>]]></description>
					</item>

	</channel>
</rss>

