<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Multiple Custom Badges/User Stats - General Discussions				            </title>
            <link>https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Thu, 18 Jun 2026 01:20:59 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Multiple Custom Badges/User Stats</title>
                        <link>https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/paged/3/#post-1898</link>
                        <pubDate>Thu, 22 Sep 2016 07:06:24 +0000</pubDate>
                        <description><![CDATA[Hi thestephaniejns,I&#039;m sorry but we don&#039;t provide codding and customization support. I&#039;d only recommend to output all Global variables and check what variable is available, then use global P...]]></description>
                        <content:encoded><![CDATA[<p>Hi thestephaniejns,</p><p>I'm sorry but we don't provide codding and customization support. I'd only recommend to output all Global variables and check what variable is available, then use <span style="color: #ff0000">global</span> PHP operator to access in your shortcode function. For example you can try :</p><pre>function myfunc(){<br /><span style="color: #ff0000">     global $member</span>;<br />     .... then use $member<br />}</pre>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/general-discussions/">General Discussions</category>                        <dc:creator>Robert</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/paged/3/#post-1898</guid>
                    </item>
				                    <item>
                        <title>RE: Multiple Custom Badges/User Stats</title>
                        <link>https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/paged/3/#post-1893</link>
                        <pubDate>Thu, 22 Sep 2016 05:37:11 +0000</pubDate>
                        <description><![CDATA[I&#039;ve tried using $member but it breaks the forum... Probably because it&#039;s being used within a shortcode, as I mentioned above. And I do need the current post user ID in the loop, b...]]></description>
                        <content:encoded><![CDATA[<p>I've tried using $member but it breaks the forum... Probably because it's being used within a shortcode, as I mentioned above. And I do need the current post user ID in the loop, but $member is not pulling that—it's pulling the current logged in user ID. Please help—I don't know if there's another array or set of code I can use but I have to get this system functional for my client this week so they can get beta testers in.</p><p>Thank you!</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/general-discussions/">General Discussions</category>                        <dc:creator>thestephaniejns</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/paged/3/#post-1893</guid>
                    </item>
				                    <item>
                        <title>RE: Multiple Custom Badges/User Stats</title>
                        <link>https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/paged/3/#post-1350</link>
                        <pubDate>Wed, 31 Aug 2016 22:27:24 +0000</pubDate>
                        <description><![CDATA[$member is current post user ID in the loop, it&#039;s not current logged-in user ID. You should use $member not $member. $member is an array]]></description>
                        <content:encoded><![CDATA[<p>$member is current post user ID in the loop, it's not current logged-in user ID. You should use <span style="color: #008000">$member</span> not <span style="color: #ff6600">$member</span>. $member is an array.</p><p>https://wpforo.com/wp-content/uploads/2016/08/current-post-user.png</p><p> </p><p> </p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/general-discussions/">General Discussions</category>                        <dc:creator>Robert</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/paged/3/#post-1350</guid>
                    </item>
				                    <item>
                        <title>RE: Multiple Custom Badges/User Stats</title>
                        <link>https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/paged/2/#post-1343</link>
                        <pubDate>Wed, 31 Aug 2016 13:25:44 +0000</pubDate>
                        <description><![CDATA[Okay, small problem... $member pulls the logged in user, not the post author. :( any idea what php I can use to pull the post author? Thinking maybe it has something to do with the fact that...]]></description>
                        <content:encoded><![CDATA[<p>Okay, small problem... $member pulls the logged in user, not the post author. :( any idea what php I can use to pull the post author? Thinking maybe it has something to do with the fact that it's within a shortcode but not sure how to get the badges to work otherwise...</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/general-discussions/">General Discussions</category>                        <dc:creator>thestephaniejns</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/paged/2/#post-1343</guid>
                    </item>
				                    <item>
                        <title>RE: Multiple Custom Badges/User Stats</title>
                        <link>https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/paged/2/#post-1342</link>
                        <pubDate>Wed, 31 Aug 2016 12:03:48 +0000</pubDate>
                        <description><![CDATA[I was able to get it to work by implementing the do_shortcode function from the link you sent on the post.php template (using the structure you describe for update-safe customizations). Here...]]></description>
                        <content:encoded><![CDATA[<p>I was able to get it to work by implementing the do_shortcode function from the link you sent on the post.php template (using the structure you describe for update-safe customizations). Here was the code I inserted (right under the author_title php blurb) if anyone else is interested in doing the same thing:</p><pre>&lt;?php echo do_shortcode('') ?&gt;</pre><p>Again, this is for integrating the Badgearoo plugin with wpForo, allowing it to show custom badges under the user's avatar/name in replies.</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/general-discussions/">General Discussions</category>                        <dc:creator>thestephaniejns</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/paged/2/#post-1342</guid>
                    </item>
				                    <item>
                        <title>RE: Multiple Custom Badges/User Stats</title>
                        <link>https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/paged/2/#post-1320</link>
                        <pubDate>Sun, 28 Aug 2016 22:59:40 +0000</pubDate>
                        <description><![CDATA[Awesome, thanks Robert! Very helpful. I&#039;ll try those things.]]></description>
                        <content:encoded><![CDATA[<p>Awesome, thanks Robert! Very helpful. I'll try those things.</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/general-discussions/">General Discussions</category>                        <dc:creator>thestephaniejns</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/paged/2/#post-1320</guid>
                    </item>
				                    <item>
                        <title>RE: Multiple Custom Badges/User Stats</title>
                        <link>https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/paged/2/#post-1306</link>
                        <pubDate>Sun, 28 Aug 2016 08:15:08 +0000</pubDate>
                        <description><![CDATA[If you need to add some information under users avatars on post list you should use posts.php file in according forum layout. For example if you use the first Extended layout you should copy...]]></description>
                        <content:encoded><![CDATA[<p>If you need to add some information under users avatars on post list you should use posts.php file in according forum layout. For example if you use the first Extended layout you should copy <span style="color: #ff6600">/classic/layouts/1/</span><span style="color: #3366ff">posts.php</span> and past in <span style="color: #3366ff">/wp-content/themes/your-theme/wpforo/layouts/1/</span> directory. Then do any customization you want.</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/general-discussions/">General Discussions</category>                        <dc:creator>Robert</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/paged/2/#post-1306</guid>
                    </item>
				                    <item>
                        <title>RE: Multiple Custom Badges/User Stats</title>
                        <link>https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/paged/2/#post-1305</link>
                        <pubDate>Sun, 28 Aug 2016 08:11:46 +0000</pubDate>
                        <description><![CDATA[Hi thestephaniejns,you can do any customization with wpForo and those will not be lost on future, please read this support topic:]]></description>
                        <content:encoded><![CDATA[<p>Hi thestephaniejns,</p><p>you can do any customization with wpForo and those will not be lost on future, please read this support topic: https://wpforo.com/community/general-discussions/wpforo-integrate-with-s2member/#post-479</p><p> </p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/general-discussions/">General Discussions</category>                        <dc:creator>Robert</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/paged/2/#post-1305</guid>
                    </item>
				                    <item>
                        <title>RE: Multiple Custom Badges/User Stats</title>
                        <link>https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/#post-1304</link>
                        <pubDate>Sun, 28 Aug 2016 08:08:37 +0000</pubDate>
                        <description><![CDATA[Here&#039;s the link for Badgearoo if that would be helpful at all -maybe it&#039;s something I would have to put code in a Badgearoo file rather than a wpForo file? In which case would you have any r...]]></description>
                        <content:encoded><![CDATA[<p>Here's the link for Badgearoo if that would be helpful at all - <a href="https://wordpress.org/plugins/badgearoo/" target="true">https://wordpress.org/plugins/badgearoo/</a></p><p>Alternatively, maybe it's something I would have to put code in a Badgearoo file rather than a wpForo file? In which case would you have any recommendations on that?</p><p>Thanks again!</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/general-discussions/">General Discussions</category>                        <dc:creator>thestephaniejns</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/#post-1304</guid>
                    </item>
				                    <item>
                        <title>RE: Multiple Custom Badges/User Stats</title>
                        <link>https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/#post-1302</link>
                        <pubDate>Sun, 28 Aug 2016 08:04:37 +0000</pubDate>
                        <description><![CDATA[Another angle I&#039;m working on for the time being to be able to go ahead and set my client up with wpForo (since I MUCH prefer the feature set of wpForo to bbPress)—if I can get Badgearoo to p...]]></description>
                        <content:encoded><![CDATA[<p>Another angle I'm working on for the time being to be able to go ahead and set my client up with wpForo (since I MUCH prefer the feature set of wpForo to bbPress)—if I can get Badgearoo to populate on wpForo forums the same as it does in bbPress (custom badges under name of user in each forum post), that would be a great interim solution, but I'm a little stuck as to how to do that. Is there a particular plugin file in wpForo I would insert code in to be able to integrate that? Thanks for any help you can provide!</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/general-discussions/">General Discussions</category>                        <dc:creator>thestephaniejns</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/general-discussions/multiple-custom-badgesuser-stats/#post-1302</guid>
                    </item>
							        </channel>
        </rss>
		