<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>BuddyPress.org | noizeburger | Mentions</title>
	<link>https://buddypress.org/members/noizeburger/activity/mentions/</link>
	<atom:link href="https://buddypress.org/members/noizeburger/activity/mentions/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed mentioning noizeburger.</description>
	<lastBuildDate>Sat, 04 Apr 2026 08:16:22 +0000</lastBuildDate>
	<generator>https://buddypress.org/?v=</generator>
	<language>en-US</language>
	<ttl>30</ttl>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>2</sy:updateFrequency>
	
						<item>
				<guid isPermaLink="false">301c3920ace2c46646f82978a7f897ed</guid>
				<title>Hope replied to the topic Different profile types and different user roles in the forum Creating &#038; Extending</title>
				<link>https://buddypress.org/support/topic/resolved-different-profile-types-and-different-user-roles/#post-176954</link>
				<pubDate>Wed, 15 Jan 2014 10:21:12 +0000</pubDate>

									<content:encoded><![CDATA[<p>Thanks a lot <a href="https://buddypress.org/community/members/noizeburger/" rel="nofollow ugc">@noizeburger</a> for this snippet, just what I want &amp; it works just fine with me. There&#8217;s only one note: The cases have to be in small letters since you&#8217;re converting to small letters. I mean for &#8220;Band Role&#8221; &amp; &#8220;Fan Role&#8221;.</p>
<p>I also don&#8217;t want for members to be able to change their roles, I did it with a simple java script to show a&hellip;<span class="activity-read-more" id="activity-read-more-214464"><a href="https://buddypress.org/support/topic/resolved-different-profile-types-and-different-user-roles/#post-176954" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">828ebb1a69aa7cd09eee718e0f610f09</guid>
				<title>Henry replied to the topic Passing user role to custom xprofile field in the forum Creating &#038; Extending</title>
				<link>http://buddypress.org/support/topic/passing-user-role-to-custom-xprofile-field/#post-175261</link>
				<pubDate>Sun, 08 Dec 2013 12:55:12 +0000</pubDate>

									<content:encoded><![CDATA[<p>Hi <a href="http://buddypress.org/community/members/noizeburger/" rel="nofollow ugc">@noizeburger</a>, glad you finally got this working. I&#8217;m sure your tutorial will be helpful to many people too. I especially like the last snippet which shows you how to disable the editing of certain fields on the edit profile screen!</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">dc2b22d39aa39abe49e4a76d3f7bdbf1</guid>
				<title>Henry replied to the topic Passing user role to custom xprofile field in the forum Creating &#038; Extending</title>
				<link>http://buddypress.org/support/topic/passing-user-role-to-custom-xprofile-field/#post-174459</link>
				<pubDate>Tue, 19 Nov 2013 14:54:37 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://buddypress.org/community/members/noizeburger/" rel="nofollow ugc">@noizeburger</a> yep, it is for use in your templates. For example, your page template could look like this:</p>
<p><code>&lt;?php get_header(); ?&gt;</p>
<p>// put the code here</p>
<p>&lt;?php get_footer(); ?&gt;</code></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">1ce8d70ff97b3c37308be58085506757</guid>
				<title>Henry replied to the topic Passing user role to custom xprofile field in the forum Creating &#038; Extending</title>
				<link>http://buddypress.org/support/topic/passing-user-role-to-custom-xprofile-field/#post-174451</link>
				<pubDate>Tue, 19 Nov 2013 13:25:12 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://buddypress.org/community/members/noizeburger/" rel="nofollow ugc">@noizeburger</a> I think I get what you mean. To show all members of type &#8216;fan&#8217; in a &#8220;fan directory&#8221; you would do this</p>
<p><code>&lt;?php</p>
<p>$fans = get_users( array( &#039;role&#039; =&gt; &#039;fan&#039; ,&#039;fields&#039;=&gt;&#039;ID&#039;) );<br />
$fans = implode( &#039;,&#039;, $fans );</p>
<p>if ( bp_has_members( &#039;&amp;include=&#039; . $fans ) ) :<br />
    while ( bp_members() ) : bp_the_member();<br />
        // you can output whatever you&hellip;</code><span class="activity-read-more" id="activity-read-more-213566"><a href="http://buddypress.org/support/topic/passing-user-role-to-custom-xprofile-field/#post-174451" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">832f031a01814f8540d069897df169ed</guid>
				<title>bp-help replied to the topic How to get the profile field name and its value in the members loop? in the forum Installing BuddyPress</title>
				<link>http://buddypress.org/support/topic/how-to-get-the-profile-field-name-and-its-value-in-the-members-loop/#post-172081</link>
				<pubDate>Tue, 01 Oct 2013 06:31:46 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://buddypress.org/community/members/whitewolf1988/" rel="nofollow ugc">@whitewolf1988</a> <a href="http://buddypress.org/community/members/noizeburger/" rel="nofollow ugc">@noizeburger</a><br />
Thank you both, and I suppose you are both correct. I will release the plugin when I get it done. If its for the greater good then I will not let anyone that would oppose this deter my efforts!</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">ba75e5a20a3a7573b96ebe8db6a2b6b8</guid>
				<title>Arrowyn posted an update in the group Auto Group Join: Did anyone get a fix going? I tried yours @noizeburger, but [&#133;]</title>
				<link>https://buddypress.org/updates/p/181716/</link>
				<pubDate>Thu, 22 Sep 2011 21:38:21 +0000</pubDate>

									<content:encoded><![CDATA[<p>Did anyone get a fix going? I tried yours <a href="http://buddypress.org/community/members/noizeburger/" rel="nofollow ugc">@noizeburger</a>, but it still doesn&#8217;t seem to work. This is exactly the plugin I need…so hopefully someone can help?</p>
<p>cheers.</p>
]]></content:encoded>
				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">672d36244c423c6554d6928a22bc1ba8</guid>
				<title>Anthony posted an update: @noizeburger sorry if the question has been asked to you a [&#133;]</title>
				<link>https://buddypress.org/updates/p/150393/</link>
				<pubDate>Thu, 28 Apr 2011 21:27:17 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://buddypress.org/community/members/noizeburger/" rel="nofollow ugc">@noizeburger</a> sorry if the question has been asked to you a million times, I&#8217;m pretty new to BP and would like to achieve a very similar effect that you were able to do on your site upon registration.</p>
]]></content:encoded>
				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">aaf6c70d65cb7b3b5ac0aabaec53539d</guid>
				<title>Anthony posted an update: @noizeburger quick question, how were you able to get the [&#133;]</title>
				<link>https://buddypress.org/updates/p/150392/</link>
				<pubDate>Thu, 28 Apr 2011 21:26:10 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://buddypress.org/community/members/noizeburger/" rel="nofollow ugc">@noizeburger</a> quick question, how were you able to get the Multiple Profile type drop down box to appear in the registration page in you bp signup area?</p>
]]></content:encoded>
				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">071d53818f15ed9ec794d289d0ae9203</guid>
				<title>chaoti posted an update in the group Auto Group Join: @noizeburger 

line 45/46 change [&#133;]</title>
				<link>https://buddypress.org/updates/p/148083/</link>
				<pubDate>Wed, 13 Apr 2011 14:57:44 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://buddypress.org/community/members/noizeburger/" rel="nofollow ugc">@noizeburger</a> </p>
<p>line 45/46 change to:<br />
add_action(&#8216;network_admin_head&#8217;, &#8216;addHeaderCode&#8217;);<br />
add_action( &#8216;network_admin_menu&#8217;, &#8216;auto_join_group_check_installed&#8217; ); </p>
<p>line 127 change to:<br />
add_action(&#8216;network_admin_menu&#8217;, &#8216;auto_join_group_plugin_menu&#8217;);</p>
<p>🙂</p>
]]></content:encoded>
				
									<slash:comments>1</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">a1b804377e79ae57abd8af6cdeced027</guid>
				<title>onyx808 posted an update in the group Auto Group Join: Plugin doesnt work with wordpress 3 multisite...  I get the [&#133;]</title>
				<link>https://buddypress.org/updates/p/147503/</link>
				<pubDate>Sun, 10 Apr 2011 09:28:57 +0000</pubDate>

									<content:encoded><![CDATA[<p>Plugin doesnt work with wordpress 3 multisite&#8230;  I get the wpmu-admin.php?page=bn-auto-join-group/bn-auto-join-group.php&amp;field_id=2&amp;mode=edit&#8230;.</p>
<p>is there a way to make it work? <a href="http://buddypress.org/community/members/westpointer/" rel="nofollow ugc">@westpointer</a> <a href="http://buddypress.org/community/members/noizeburger/" rel="nofollow ugc">@noizeburger</a></p>
]]></content:encoded>
				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">4422191055842693ff06d7949cb7f408</guid>
				<title>imath posted on the forum topic Error Activating Widgets in the group BP My Home</title>
				<link>http://buddypress.org/community/groups/bp-my-home/forum/topic/error-activating-widgets/#post-94085</link>
				<pubDate>Fri, 25 Mar 2011 10:05:24 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://buddypress.org/community/members/noizeburger/" rel="nofollow ugc">@noizeburger</a> thks for your posts to solve the trouble.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">2f91f23b6b07054a4b8e98410687800d</guid>
				<title>aljuk posted on the forum topic How to hide some profile fields from public in the group How-To and Troubleshooting</title>
				<link>http://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-to-hide-some-profile-fields-from-public/#post-89020</link>
				<pubDate>Mon, 07 Feb 2011 17:57:46 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://buddypress.org/community/members/philippmuenchen/" rel="nofollow ugc"></a><a href="http://buddypress.org/community/members/philippmuenchen/" rel="nofollow ugc">@philippmuenchen</a> &#8211; it works fine. I&#8217;m guessing you&#8217;re trying to test it while you&#8217;re logged in as Admin? The privacy controls don&#8217;t apply to Admin. Admin can see everything. Log in as a regular user and then test.</p>
<p>Age calculation: <a href="http://code.hyperspatial.com/all-code/buddypress-code/buddypress-age/" rel="nofollow ugc">http://code.hyperspatial.com/all-code/buddypress-code/buddypress-age/</a></p>
<p><a href="http://buddypress.org/community/members/noizeburger/" rel="nofollow ugc"></a><a href="http://buddypress.org/community/members/noizeburger/" rel="nofollow ugc">@noizeburger</a> &#8211; it works for all fieldgroups,&hellip;<span class="activity-read-more" id="activity-read-more-135914"><a href="http://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-to-hide-some-profile-fields-from-public/#post-89020" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">221504d229f200e1c8fc14a63c56149c</guid>
				<title>hnla posted on the forum topic Profile stats and location in profile page like buddypress.org in the group How-To and Troubleshooting</title>
				<link>http://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/profile-stats-and-location-in-profile-page-like-buddypress-org/?topic_pa</link>
				<pubDate>Mon, 06 Dec 2010 20:15:21 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://buddypress.org/community/members/pcwriter/" rel="nofollow ugc"></a><a href="http://buddypress.org/community/members/pcwriter/" rel="nofollow ugc">@pcwriter</a> <a href="http://buddypress.org/community/members/noizeburger/" rel="nofollow ugc"></a><a href="http://buddypress.org/community/members/noizeburger/" rel="nofollow ugc">@noizeburger</a> <a href="http://buddypress.org/community/members/janismo/" rel="nofollow ugc">@janismo</a><br />
<a href="http://buddypress.org/community/groups/bp-user-profile-map/home/" rel="nofollow ugc">http://buddypress.org/community/groups/bp-user-profile-map/home/</a></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">f55bc27301751e61175a3cd96aec08ad</guid>
				<title>hnla posted on the forum topic Profile stats and location in profile page like buddypress.org in the group How-To and Troubleshooting</title>
				<link>http://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/profile-stats-and-location-in-profile-page-like-buddypress-org/?topic_pa</link>
				<pubDate>Mon, 06 Dec 2010 09:29:12 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://buddypress.org/community/members/pcwriter/" rel="nofollow ugc">@pcwriter</a> <a href="http://buddypress.org/community/members/noizeburger/" rel="nofollow ugc">@noizeburger</a></p>
<p>I have finished a basic little plugin that allows you to add the google map to profile pages via the various action hooks available along with a widget for placing map in custom areas. Just waiting on svn repo access to upload plugin.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">e57eca3c519aa75d655eb260bdba105b</guid>
				<title>Janis posted on the forum topic Can you run multiple profile loops in single/profile-loop.php ? in the group How-To and Troubleshooting</title>
				<link>http://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/can-you-run-multiple-profile-loops-in-singleprofile-loop-php/?topic_page</link>
				<pubDate>Mon, 25 Oct 2010 08:31:04 +0000</pubDate>

									<content:encoded><![CDATA[<p>hi<br />
<a href="http://buddypress.org/community/members/noizeburger/" rel="nofollow ugc">@noizeburger</a></p>
<p>haven&#8217;t time to check full code yet, but Cindy (author) replied that everything works fine for her. She is really open for help, contact her with any further questions you have.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">f8009a7fbf3ab719305470f4113ff88b</guid>
				<title>Janis posted on the forum topic Profile types in the group How-To and Troubleshooting</title>
				<link>http://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/profile-types/#post-75262</link>
				<pubDate>Wed, 13 Oct 2010 10:42:31 +0000</pubDate>

									<content:encoded><![CDATA[<p>hi <a href="http://buddypress.org/community/members/noizeburger/" rel="nofollow ugc">@noizeburger</a></p>
<p>no, it doesn&#8217;t.<br />
please, take a look on this topic:<br />
<a href="http://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/can-you-run-multiple-profile-loops-in-singleprofile-loop-php/" rel="nofollow ugc">http://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/can-you-run-multiple-profile-loops-in-singleprofile-loop-php/</a></p>
<p>hope some day it will be solved.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">2f6ebd8e700c46ece3bab84278bf25a6</guid>
				<title>Retroriff posted on the forum topic Blank site after installing Buddypress in Wordpress 3 in the group Installing BuddyPress</title>
				<link>http://buddypress.org/community/groups/installing-buddypress/forum/topic/blank-site-after-installing-buddypress-in-wordpress-3/#post-60747</link>
				<pubDate>Tue, 29 Jun 2010 17:16:43 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://buddypress.org/community/members/noizeburger/" rel="nofollow ugc">@noizeburger</a> Hi, I already changed the quotes before answering here. It is not working to me even with the right quotes. Thanks.</p>
]]></content:encoded>
				
				
							</item>
		
	</channel>
</rss>