<?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: avatar wordpress bbpress gravatar plugin plug-in</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress Support Forums Tag: avatar wordpress bbpress gravatar plugin plug-in</description>
<language>en</language>
<pubDate>Fri, 09 Jan 2009 00:05:29 +0000</pubDate>

<item>
<title>BloggerDesign on "avatars in wordpress and bbpress"</title>
<link>http://bbpress.org/forums/topic/avatars-in-wordpress-and-bbpress#post-16001</link>
<pubDate>Tue, 06 May 2008 15:47:50 +0000</pubDate>
<dc:creator>BloggerDesign</dc:creator>
<guid isPermaLink="false">16001@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This code works fantastic!  Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>affacat on "avatars in wordpress and bbpress"</title>
<link>http://bbpress.org/forums/topic/avatars-in-wordpress-and-bbpress#post-15857</link>
<pubDate>Tue, 29 Apr 2008 07:31:27 +0000</pubDate>
<dc:creator>affacat</dc:creator>
<guid isPermaLink="false">15857@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Not sure what you mean - the code I had above should do what I say it did, it just didn't do what I  wanted.&#60;/p&#62;
&#60;p&#62;That said?  I now have it working the way I wanted.&#60;/p&#62;
&#60;p&#62;This code:&#60;/p&#62;
&#60;p&#62;Gets the bbPress avatar, if it exists.&#60;br /&#62;
Checks to see if it's an Identicon...&#60;br /&#62;
No? Display it.&#60;br /&#62;
Yes? Display Gravatar... but with the  URL of the Identicon set as the default in case none exists.&#60;/p&#62;
&#60;p&#62;Problem solved.&#60;br /&#62;
Note: I believe Gravatar recently integrated Identicons as a default setting, so you can probably do this now without Identicons setup in bbPress by modifying the code some.  But this works.&#60;/p&#62;
&#60;p&#62;PROFILE.PHP:&#60;/p&#62;
&#60;p&#62;	$ava = avatarupload_get_avatar($user-&#38;gt;ID,1,1,0);&#60;br /&#62;
	if ( avatarupload_get_avatar($user-&#38;gt;ID) &#38;#38;&#38;#38; !(usingidenticon($user-&#38;gt;ID) )) {&#60;br /&#62;
		avatarupload_display($user-&#38;gt;ID);&#60;br /&#62;
			}&#60;br /&#62;
	else {&#60;br /&#62;
		echo bb_get_avatar($user-&#38;gt;ID,48,$ava&#60;a href=&#34;http://trac.bbpress.org/changeset/0&#34;&#62;[0]&#60;/a&#62;);&#60;br /&#62;
	}	&#60;/p&#62;
&#60;p&#62;POST.PHP:&#60;br /&#62;
	$ava = avatarupload_get_avatar(get_post_author_id(),1,1,0);&#60;/p&#62;
&#60;p&#62;	if ( avatarupload_get_avatar(get_post_author_id()) &#38;#38;&#38;#38; !(usingidenticon(get_post_author_id()) )) {&#60;br /&#62;
		avatarupload_display(get_post_author_id());&#60;br /&#62;
			}&#60;br /&#62;
	else {&#60;br /&#62;
		post_author_avatar(48,$ava&#60;a href=&#34;http://trac.bbpress.org/changeset/0&#34;&#62;[0]&#60;/a&#62;);&#60;br /&#62;
	}
&#60;/p&#62;</description>
</item>
<item>
<title>monstr on "avatars in wordpress and bbpress"</title>
<link>http://bbpress.org/forums/topic/avatars-in-wordpress-and-bbpress#post-15810</link>
<pubDate>Sun, 27 Apr 2008 08:13:46 +0000</pubDate>
<dc:creator>monstr</dc:creator>
<guid isPermaLink="false">15810@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;affact, your code is just what i was searching for. unfortunately it just doesn't work :/
&#60;/p&#62;</description>
</item>
<item>
<title>affacat on "avatars in wordpress and bbpress"</title>
<link>http://bbpress.org/forums/topic/avatars-in-wordpress-and-bbpress#post-15310</link>
<pubDate>Sat, 12 Apr 2008 19:11:03 +0000</pubDate>
<dc:creator>affacat</dc:creator>
<guid isPermaLink="false">15310@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;to better illustrate my issue, my current code for the profile page is:&#60;/p&#62;
&#60;p&#62;if ( avatarupload_get_avatar(ID) ) {&#60;br /&#62;
		avatarupload_display($user-&#38;gt;ID);&#60;br /&#62;
	} else {&#60;br /&#62;
		echo bb_get_avatar( $user-&#38;gt;ID );&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;which means if uploaded avatar exists then display it, else get gravatar.&#60;/p&#62;
&#60;p&#62;but what i really want is:&#60;/p&#62;
&#60;p&#62;if uploaded avatar exists then display it, else if gravatar exists then display that, but if neither exists then display the avatar upload default avatar.  &#60;/p&#62;
&#60;p&#62;Right now it displays gravatar default instead. which isn't my first choice since avatar upload would give me control over the default image which is better for obvious reasons.
&#60;/p&#62;</description>
</item>
<item>
<title>affacat on "avatars in wordpress and bbpress"</title>
<link>http://bbpress.org/forums/topic/avatars-in-wordpress-and-bbpress#post-15305</link>
<pubDate>Sat, 12 Apr 2008 12:16:47 +0000</pubDate>
<dc:creator>affacat</dc:creator>
<guid isPermaLink="false">15305@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;OK, so it looks like the plugin version 0.8.3 still works in bbPress 0.9.1 - though I have not yet put it through heavy testing.  I found the install directions left a little to be desired so I added more detailed directions below.&#60;/p&#62;
&#60;p&#62;However... I still have a question.   Some of my users have adopted Gravatars since WP 2.5 was released.   The plugin currently does not seem to check for gravatar existence, let alone provide some sort of control over precedence of different sourced avatars.&#60;/p&#62;
&#60;p&#62;The installation instructions DO provide you with the function to call to see if a plug-in uploaded/created avatar exists.   However, in order to get the precedence working the way I'd like, I need to know how to test for a Gravatar existence as well.  Any ideas? Thanks in advance.&#60;/p&#62;
&#60;p&#62;Any ideas?&#60;/p&#62;
&#60;p&#62;Install instructions:&#60;br /&#62;
1. Download Plugin here:&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/plugins/topic/avatar-upload/&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/avatar-upload/&#60;/a&#62;&#60;br /&#62;
Version 0.8.3 is current at time of this writing.&#60;/p&#62;
&#60;p&#62;2. Create the following two folders in your bbpress install:&#60;br /&#62;
/my-plugins&#60;br /&#62;
/avatars&#60;/p&#62;
&#60;p&#62;3. follow instructions (specifically, step 5) in the readme file which tells you where to copy files.  Some files in the zip aren't mentioned (such as indenticon.php).  I put those into my-plugins and so far, so good.  &#60;/p&#62;
&#60;p&#62;4. Activate plugin.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "avatars in wordpress and bbpress"</title>
<link>http://bbpress.org/forums/topic/avatars-in-wordpress-and-bbpress#post-15270</link>
<pubDate>Fri, 11 Apr 2008 16:35:18 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">15270@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The Avatar Upload plugin is fairly well developed and I believe there is a hack to show them on the WordPress side as well.  It does take a little bit of time to setup though.
&#60;/p&#62;</description>
</item>
<item>
<title>affacat on "avatars in wordpress and bbpress"</title>
<link>http://bbpress.org/forums/topic/avatars-in-wordpress-and-bbpress#post-15051</link>
<pubDate>Sat, 05 Apr 2008 11:10:23 +0000</pubDate>
<dc:creator>affacat</dc:creator>
<guid isPermaLink="false">15051@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey all,&#60;/p&#62;
&#60;p&#62;So I've searched both this forum and the WP forum.  And there are a ton of avatar related threads, and I've read through most of them.   It looks like there have been a few various implementations.&#60;/p&#62;
&#60;p&#62;But most of those threads are almost a year old, and now we're in 2.5 and .9.0.1 land... and so I'd love a definitive uptodate answer  as to which plugin(s) to use to best integrate avatars into both sites.&#60;/p&#62;
&#60;p&#62;Gravatars are cool and all (I do have an integrated user base) but pretty much the first question people asked is how they can upload an avatar without using gravatars (I think some people don't want their image suddenly showing up all over the web wherever they've commented in the passt)
&#60;/p&#62;</description>
</item>

</channel>
</rss>
