<?xml version="1.0"?><!-- 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 Showcase Tag: avatars</title>
<link>http://bbshowcase.org/forums/</link>
<description>bbPress Showcase Tag: avatars</description>
<language>en</language>
<pubDate>Fri, 05 Dec 2008 10:36:11 +0000</pubDate>

<item>
<title>_ck_ on "Show user avatar"</title>
<link>http://bbshowcase.org/forums/topic/show-user-avatar#post-312</link>
<pubDate>Fri, 09 May 2008 21:14:05 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">312@http://bbshowcase.org/forums/</guid>
<description>&#60;p&#62;I think there is a bug in his function.&#60;br /&#62;
It takes the $id, but it doesn't use it and switches to the global $user later on, which is wrong.&#60;br /&#62;
Let me see if I can figure out the fix.&#60;/p&#62;
&#60;p&#62;You might be able to trick it into a workaround by using the $forcedb option, ie.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;avatarupload_get_avatar($id, 1, 1)&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>tikitakfire on "Show user avatar"</title>
<link>http://bbshowcase.org/forums/topic/show-user-avatar#post-311</link>
<pubDate>Fri, 09 May 2008 16:09:47 +0000</pubDate>
<dc:creator>tikitakfire</dc:creator>
<guid isPermaLink="false">311@http://bbshowcase.org/forums/</guid>
<description>&#60;p&#62;don't work...&#60;/p&#62;
&#60;p&#62;Look, when I use &#60;code&#62;bb_get_current_user_info(&#38;#39;id&#38;#39;)&#60;/code&#62; like this &#60;code&#62;&#38;lt;?php echo &#38;#39;Bienvenido &#38;lt;strong&#38;gt;&#38;#39;.bb_get_current_user_info(&#38;#39;id&#38;#39;).&#38;#39;&#38;lt;/strong&#38;gt;&#38;#39;; ?&#38;gt;&#60;/code&#62;, always shows the user logged id, but, when I use in this form &#60;code&#62;&#38;lt;?php avatarupload_displaythumb(bb_get_current_user_info(&#38;#39;id&#38;#39;)); ?&#38;gt;&#60;/code&#62; change my ID for the ID each profile...&#60;/p&#62;
&#60;p&#62;you know why?&#60;/p&#62;
&#60;p&#62;I think I will withdraw...
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Show user avatar"</title>
<link>http://bbshowcase.org/forums/topic/show-user-avatar#post-310</link>
<pubDate>Fri, 09 May 2008 09:15:15 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">310@http://bbshowcase.org/forums/</guid>
<description>&#60;p&#62;You can try then doing something like this:&#60;br /&#62;
&#60;code&#62;&#38;lt;?php global $bb_current_user; avatarupload_display($bb_current_user-&#38;gt;ID); ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;That essentially has to work.
&#60;/p&#62;</description>
</item>
<item>
<title>tikitakfire on "Show user avatar"</title>
<link>http://bbshowcase.org/forums/topic/show-user-avatar#post-309</link>
<pubDate>Fri, 09 May 2008 08:56:08 +0000</pubDate>
<dc:creator>tikitakfire</dc:creator>
<guid isPermaLink="false">309@http://bbshowcase.org/forums/</guid>
<description>&#60;p&#62;yes, I know that, but I need display the avatar of the current logged user in all pages...&#60;/p&#62;
&#60;p&#62;I created a user so you can see that is what I want do:&#60;br /&#62;
&#60;strong&#62;URL:&#60;/strong&#62; &#60;a href=&#34;http://jujuyblogs.com.ar/foro/&#34; rel=&#34;nofollow&#34;&#62;http://jujuyblogs.com.ar/foro/&#60;/a&#62;&#60;br /&#62;
&#60;strong&#62;USER:&#60;/strong&#62; demo&#60;br /&#62;
&#60;strong&#62;PASS:&#60;/strong&#62; 123456&#60;/p&#62;
&#60;p&#62;if you logged in my forum, you will see that I show the avatar of user identified, but when the connected user look at the profile of another user, the plugin shows the avatar of the curren profile...&#60;/p&#62;
&#60;p&#62;explained to me?
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Show user avatar"</title>
<link>http://bbshowcase.org/forums/topic/show-user-avatar#post-308</link>
<pubDate>Fri, 09 May 2008 00:52:48 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">308@http://bbshowcase.org/forums/</guid>
<description>&#60;p&#62;In the profile you have to use&#60;br /&#62;
&#60;code&#62;&#38;lt;?php avatarupload_display($user-&#38;gt;ID); ?&#38;gt;&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>tikitakfire on "Show user avatar"</title>
<link>http://bbshowcase.org/forums/topic/show-user-avatar#post-303</link>
<pubDate>Thu, 08 May 2008 14:46:37 +0000</pubDate>
<dc:creator>tikitakfire</dc:creator>
<guid isPermaLink="false">303@http://bbshowcase.org/forums/</guid>
<description>&#60;p&#62;hello, it's me again...&#60;/p&#62;
&#60;p&#62;I'm using Avatar Upload and I want to show the avatar of the logged user like in the image, now, when see the profile of another user the plugin display the avatar of the user profile that I see and not my avatar...&#60;/p&#62;
&#60;p&#62;I'm using this code to show the avatar of the current logged user&#60;br /&#62;
&#60;code&#62;&#38;lt;?php avatarupload_display(bb_get_current_user_info(&#38;#39;id&#38;#39;)); ?&#38;gt;&#60;/code&#62;&#60;br /&#62;
but, as I said earlier, the ID changes in each profile, showing the avatar of each profile and not the ID of the connected user...&#60;/p&#62;
&#60;p&#62;There is some way to show the logged user avatar and not to each profile?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
