<?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 | shanebp | Activity</title>
	<link>https://buddypress.org/members/shanebp/activity/</link>
	<atom:link href="https://buddypress.org/members/shanebp/activity/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed for shanebp.</description>
	<lastBuildDate>Sat, 18 Apr 2026 06:57:17 +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">89a5cc1e5f137318cddb586212791cb3</guid>
				<title>shanebp replied to the topic Font Awesome breaks ajax on delete link in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/font-awesome-breaks-ajax-on-delete-link/#post-185947</link>
				<pubDate>Mon, 04 Aug 2014 21:51:21 +0000</pubDate>

									<content:encoded><![CDATA[<p>It&#8217;s the jquery in global.js</p>
<p>The &#8216;target&#8217; becomes the icon rather than the a tag.<br />
So <code>if ( target.hasClass(&#039;delete-activity&#039;)</code> fails. </p>
<p>Changing to this gets the right target:<br />
<code>if ( target.hasClass(&#039;icon-trash&#039;) {</code></p>
<p>And then you need to change:<br />
<code>var link_href = target.attr(&#039;href&#039;);</code></p>
<p>to:<br />
<code>var link_href = target.closest(&quot;a&quot;).attr(&quot;href&quot;);</code> </p>
<p>otherwise&hellip;<span class="activity-read-more" id="activity-read-more-284292"><a href="http://buddypress.org/support/topic/font-awesome-breaks-ajax-on-delete-link/#post-185947" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b9b8b995ef2efff9161bcdeb1231ab17</guid>
				<title>shanebp replied to the topic How to filter &#034;so and so joined the group&#034; from group activity stream? in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/how-to-filter-so-and-so-joined-the-group-from-group-activity-stream/#post-185942</link>
				<pubDate>Mon, 04 Aug 2014 19:25:39 +0000</pubDate>

									<content:encoded><![CDATA[<p>Rather than filter it, prevent the entry from being created. </p>
<p>Try this in your theme/functions.php or plugins/bp-custom.php<br />
It won&#8217;t remove existing entries, but should stop new ones. </p>
<p><code>function victor_dont_save_join_group_activity( $activity_object ) {</p>
<p>    $exclude = array( &#039;joined_group&#039; );</p>
<p>    if( in_array( $activity_object-&gt;type, $exclude&hellip;</code><span class="activity-read-more" id="activity-read-more-284238"><a href="http://buddypress.org/support/topic/how-to-filter-so-and-so-joined-the-group-from-group-activity-stream/#post-185942" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">c1e6be0abc483c9aa4fafd13cd274b7e</guid>
				<title>shanebp replied to the topic Font Awesome breaks ajax on delete link in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/font-awesome-breaks-ajax-on-delete-link/#post-185939</link>
				<pubDate>Mon, 04 Aug 2014 18:18:29 +0000</pubDate>

									<content:encoded><![CDATA[<p>This issue gets stranger the farther I dig&#8230; </p>
<p>1. We aren&#8217;t using the BP Default theme, so why is the activity stream using global.js instead of buddypress.js from the legacy theme? </p>
<p>2. in either /js, this click handler is never triggered if an image is used in the &lt; a &gt; tag for activity-&gt;delete or activity-&gt;fav</p>
<p><code>jq(&#039;div.activity&#039;).click(&hellip;</code><span class="activity-read-more" id="activity-read-more-284210"><a href="http://buddypress.org/support/topic/font-awesome-breaks-ajax-on-delete-link/#post-185939" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">a3bac0e6b6548f97a4991a5e29a69524</guid>
				<title>shanebp replied to the topic Trouble finding the PHP behind the &#034;Create a Group&#034; button in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/trouble-finding-the-php-behind-the-create-a-group-button/#post-185897</link>
				<pubDate>Sun, 03 Aug 2014 22:59:11 +0000</pubDate>

									<content:encoded><![CDATA[<p>Always grep in the BP plugin folder first. </p>
<p>bp_group_create_button()<br />
bp-groupsbp-groups-template.php  ~L. 1890</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">5d22c3917349bef8cb5cd5c316f87075</guid>
				<title>shanebp replied to the topic Font Awesome breaks ajax on delete link in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/font-awesome-breaks-ajax-on-delete-link/#post-185886</link>
				<pubDate>Sun, 03 Aug 2014 20:42:35 +0000</pubDate>

									<content:encoded><![CDATA[<p>Replacing the text with a basic img tag has the same effect; when clicked, the activity item is deleted but on a page reload instead of via ajax.</p>
<p>So I don&#8217;t think it&#8217;s specific to font awesome.  </p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">6a00ccd2984b06f52d6ad946cc2b3f7a</guid>
				<title>shanebp started the topic Font Awesome breaks ajax on delete link in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/font-awesome-breaks-ajax-on-delete-link/</link>
				<pubDate>Sun, 03 Aug 2014 20:13:24 +0000</pubDate>

									<content:encoded><![CDATA[<p>I can replace the activity stream item &#8216;Delete&#8217; text with a Font Awesome icon, but it causes a page reload instead of using ajax. </p>
<p>Any ideas as to why or a solution? </p>
<p><code>function sc_swap_delete_text( $link ) {<br />
	$trash = &#039;&lt;i class=&quot;icon-trash icon-large&quot;&gt;&lt;/i&gt;&#039;;</p>
<p>	$link = str_replace(&quot;Delete&quot;, $trash, $link);</p>
<p>	return $link;<br />
}<br />
add_filter(&hellip;</code><span class="activity-read-more" id="activity-read-more-283731"><a href="http://buddypress.org/support/topic/font-awesome-breaks-ajax-on-delete-link/" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">d94ea93dab91aaa3d5cbf0c2d7027e73</guid>
				<title>shanebp replied to the topic [Resolved] Limited Checkbox Selection in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/limited-checkbox-selection/#post-185847</link>
				<pubDate>Fri, 01 Aug 2014 21:50:38 +0000</pubDate>

									<content:encoded><![CDATA[<p>format got messed up, so look here for a non-jQuery approach: <a href="http://pastebin.com/0afNVh3e" rel="nofollow ugc">http://pastebin.com/0afNVh3e</a></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">1c35898e32ef835a4d45ee5c76c4327b</guid>
				<title>shanebp replied to the topic [Resolved] Display group of specific user on wordpress page in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/display-group-of-specific-user-on-wordpress-page/#post-185846</link>
				<pubDate>Fri, 01 Aug 2014 21:37:48 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://buddypress.org/support/topic/display-groups-user-is-a-member-of/" rel="nofollow ugc">read this</a></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">2fc4d99015234dc6df5c124f9f847480</guid>
				<title>shanebp replied to the topic [Resolved] Limited Checkbox Selection in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/limited-checkbox-selection/#post-185845</link>
				<pubDate>Fri, 01 Aug 2014 21:26:48 +0000</pubDate>

									<content:encoded><![CDATA[<p>javascript:<br />
<code>function checkboxlimit(checkgroup, limit){<br />
	for (var i=0; i&lt;checkgroup.length; i++){<br />
		checkgroup[i].onclick=function(){<br />
		var checkedcount=0<br />
		for (var i=0; i&lt;checkgroup.length; i++)<br />
			checkedcount+=(checkgroup[i].checked)? 1 : 0<br />
		if (checkedcount&gt;limit){<br />
			alert(&quot;You can select a maximum of &quot;+limit+&quot;&hellip;</code><span class="activity-read-more" id="activity-read-more-282950"><a href="http://buddypress.org/support/topic/limited-checkbox-selection/#post-185845" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">3dbc9b5ab2525ff282d69b4daec035b2</guid>
				<title>shanebp replied to the topic [Resolved] How to have &#034;Edit&#034; before Profile Group Tab in editing in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/how-to-override-bp_profile_group_tabs/#post-185836</link>
				<pubDate>Fri, 01 Aug 2014 19:03:16 +0000</pubDate>

									<content:encoded><![CDATA[<p>&gt;In the original function, there’s no return statement only echo.</p>
<p>The original function is not a filter hooked function.<br />
echo $tab; is not a return.<br />
Read up on Wordpress functions, actions and filters. </p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">fae0fc3ceecf9190403b3cb734d27e36</guid>
				<title>shanebp replied to the topic [Resolved] How to have &#034;Edit&#034; before Profile Group Tab in editing in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/how-to-override-bp_profile_group_tabs/#post-185834</link>
				<pubDate>Fri, 01 Aug 2014 18:20:26 +0000</pubDate>

									<content:encoded><![CDATA[<p>I&#8217;m surprised your code works.<br />
Filter should <em>always</em> return something.</p>
<p>This is unfinished but outlines another approach, probably more &#8216;correct&#8217;:</p>
<p><code>function custom_bp_profile_group_tabs( $tabs, $groups, $group_name ) {</p>
<p>	tab_names = array(&#039;Base&#039;, &#039;GroupProfile&#039; ); // add to as necessary</p>
<p>	foreach ( (array) $tabs as $tab ) {<br />
	   // loop thru&hellip;</code><span class="activity-read-more" id="activity-read-more-282884"><a href="http://buddypress.org/support/topic/how-to-override-bp_profile_group_tabs/#post-185834" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">ccdb727fd837b3dd09b3552c7e89de57</guid>
				<title>shanebp replied to the topic [Resolved] How to have &#034;Edit&#034; before Profile Group Tab in editing in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/how-to-override-bp_profile_group_tabs/#post-185826</link>
				<pubDate>Fri, 01 Aug 2014 14:03:16 +0000</pubDate>

									<content:encoded><![CDATA[<p>In bp_profile_group_tabs, there is a filter hook:</p>
<p><code>$tabs = apply_filters( &#039;xprofile_filter_profile_group_tabs&#039;, $tabs, $groups, $group_name );</code></p>
<p>Write a filter function and do a string search &amp; replace for each tab.<br />
ex. Search for &#8216;Base&#8217; and replace it with &#8216;Edit Base&#8217;.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">62fc645a78a776de6f34f0bbe4f5ed85</guid>
				<title>shanebp replied to the topic Custom Component Help in the forum Creating &#038; Extending</title>
				<link>http://buddypress.org/support/topic/custom-component-help/#post-185735</link>
				<pubDate>Tue, 29 Jul 2014 22:21:22 +0000</pubDate>

									<content:encoded><![CDATA[<p>Might be related to your component, but probably just the usual cpt issues.</p>
<p>Do you have a theme template called single-music.php so that WP can display it? </p>
<p>Do you have a pre_get_posts filter in your theme/functions.php or plugin file so that WP knows you want a cpt? </p>
<p><code>// so music cpt is included in cat or tag calls<br />
function&hellip;</code><span class="activity-read-more" id="activity-read-more-281416"><a href="http://buddypress.org/support/topic/custom-component-help/#post-185735" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b0f19d699f22c23bcaa40845023b0536</guid>
				<title>shanebp replied to the topic Member Total when excluding subscribers in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/member-total-when-excluding-subscribers/#post-185709</link>
				<pubDate>Tue, 29 Jul 2014 13:04:41 +0000</pubDate>

									<content:encoded><![CDATA[<p>Try using the bp_pre_user_query_construct hook<br />
<a href="http://codex.buddypress.org/developer/bp_user_query/#code-examples" rel="nofollow ugc">codex example</a> </p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">2519985a202fa73fc725902749cc56a7</guid>
				<title>shanebp replied to the topic Creating an iOS accompaniment to my site in the forum Creating &#038; Extending</title>
				<link>http://buddypress.org/support/topic/creating-an-ios-accompaniment-to-my-site/#post-185608</link>
				<pubDate>Sat, 26 Jul 2014 15:51:03 +0000</pubDate>

									<content:encoded><![CDATA[<p>There are various plugins and services for turning a WP site into an app &#8211; google it.<br />
Here&#8217;s one: <a href="http://apppresser.com/" rel="nofollow ugc">appPresser</a></p>
<p>Remember that you don&#8217;t need to use WP/BP to call the database.<br />
Often times, devs create apps that only use a subset of the data.<br />
So rolling your own app is feasible and probably the best approach. </p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">9ca7da78fa188068f819e50eb4235b5c</guid>
				<title>shanebp replied to the topic Create custom notifications in the forum Creating &#038; Extending</title>
				<link>http://buddypress.org/support/topic/create-custom-notifications/#post-185572</link>
				<pubDate>Fri, 25 Jul 2014 18:32:00 +0000</pubDate>

									<content:encoded><![CDATA[<p>The bbpress example is a good one. </p>
<p>But just fyi &#8211; the BuddyPress codex page is here: <a href="http://codex.buddypress.org/developer/function-examples/bp_notifications_add_notification/" rel="nofollow ugc">bp_notifications_add_notification</a> page. </p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">1fc817d9d13e3bc0fd8b0f4e0d52fa81</guid>
				<title>shanebp replied to the topic Duplicate BuddyPress activity  in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/duplicate-buddypress-activity/#post-185568</link>
				<pubDate>Fri, 25 Jul 2014 17:24:15 +0000</pubDate>

									<content:encoded><![CDATA[<p>That might be tricky to track down, given that ajax is involved.<br />
Your best bet is to ask Headway. </p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">30a639b63d963f03d3e0c2e2f0b00ed0</guid>
				<title>shanebp replied to the topic Duplicate BuddyPress activity  in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/duplicate-buddypress-activity/#post-185564</link>
				<pubDate>Fri, 25 Jul 2014 16:56:01 +0000</pubDate>

									<content:encoded><![CDATA[<p>&gt;where both want to display the posts hence the duplication </p>
<p>It&#8217;s not a display problem, although that&#8217;s how it manifests. </p>
<p>Two entries are being created when an update is created.<br />
<a href="http://boyabouttown.net/members/jenifusion/activity/58/" rel="nofollow ugc">http://boyabouttown.net/members/jenifusion/activity/58/</a><br />
<a href="http://boyabouttown.net/members/jenifusion/activity/57/" rel="nofollow ugc">http://boyabouttown.net/members/jenifusion/activity/57/</a></p>
<p>Did you switch to a WP theme ( 2013, etc )  and <em>then</em>&hellip;<span class="activity-read-more" id="activity-read-more-279637"><a href="http://buddypress.org/support/topic/duplicate-buddypress-activity/#post-185564" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">2429df92142fec0e690a48e3a13cc081</guid>
				<title>shanebp replied to the topic Sanitize Input -  groups_update_groupmeta in the forum Creating &#038; Extending</title>
				<link>http://buddypress.org/support/topic/sanitize-input-groups_update_groupmeta/#post-185527</link>
				<pubDate>Thu, 24 Jul 2014 20:53:31 +0000</pubDate>

									<content:encoded><![CDATA[<p>Easy enough to test with some &#8216;bad&#8217; data, but  groups_update_groupmeta uses update_metadata which runs the value thru things like  sanitize_meta, so you should be fine. </p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">ed4e6388f7877f7a0cf15d1d14e52da2</guid>
				<title>shanebp replied to the topic NSFW: Please review my theme &#124; BBFacelook in the forum Showcase</title>
				<link>http://buddypress.org/support/topic/please-review-my-theme-bbfacelook/#post-185521</link>
				<pubDate>Thu, 24 Jul 2014 17:11:38 +0000</pubDate>

									<content:encoded><![CDATA[<p>It looks fine and is usable.<br />
I like the stripped down listings on pages like &#8216;members&#8217;</p>
<p>But the only opinions that count are those of your users.  </p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">47b1084fce4dfb1f7e834f3de20d52db</guid>
				<title>shanebp replied to the topic [Resolved] New users only visible after logging in in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/new-users-only-visible-after-logging-in/#post-185516</link>
				<pubDate>Thu, 24 Jul 2014 14:10:49 +0000</pubDate>

									<content:encoded><![CDATA[<p>They aren&#8217;t visible because they have no last_activity field.<br />
Going forward, this should add it for new members &#8211; untested, goes in theme/functions.php</p>
<p><code>function pilon_add_timestamp( $user_id ) {<br />
    bp_update_user_last_activity( $user_id );<br />
}<br />
add_action(&#039;user_register&#039;, &#039;pilon_add_timestamp&#039;, 10 , 1);</code></p>
<p>For existing members with no last_activity,&hellip;<span class="activity-read-more" id="activity-read-more-279048"><a href="http://buddypress.org/support/topic/new-users-only-visible-after-logging-in/#post-185516" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">6a5892c76da279703380edd77568a6ef</guid>
				<title>shanebp replied to the topic [Resolved] Display groups a user is member of in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/display-groups-user-is-a-member-of/#post-185214</link>
				<pubDate>Thu, 17 Jul 2014 14:40:39 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://buddypress.org/support/topic/getting-group-name-from-id/" rel="nofollow ugc">Read this</a>. </p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">05bcdcc0eb0707e08689edecac4fd8ce</guid>
				<title>shanebp replied to the topic [Resolved] Replace plugin-function from bp-groupblog - double output in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/replace-plugin-function-from-bp-groupblog-double-output/#post-185212</link>
				<pubDate>Thu, 17 Jul 2014 14:09:31 +0000</pubDate>

									<content:encoded><![CDATA[<p>Nice. And thanks for the link to the discussion. </p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">88e336289ce25ebf509bf4a75333c8e3</guid>
				<title>shanebp replied to the topic [Resolved] Trying to locate php file for editing the Activity Stream Output. in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/trying-to-locate-php-file-for-editing-the-activity-stream-output/#post-185211</link>
				<pubDate>Thu, 17 Jul 2014 14:03:02 +0000</pubDate>

									<content:encoded><![CDATA[<p>This is the file:<br />
buddypressbp-templatesbp-legacybuddypressactivityentry.php</p>
<p>Create a <a href="http://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/#overloading-template-compatibility-theme-files" rel="nofollow ugc">template overload</a> before you change it. </p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">4cb7f3f2c615112221d1da2303e4a2d9</guid>
				<title>shanebp replied to the topic How to Limit Personal Activity Feed Posts in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/how-to-limit-personal-activity-feed-posts/#post-184989</link>
				<pubDate>Fri, 11 Jul 2014 23:53:42 +0000</pubDate>

									<content:encoded><![CDATA[<p>buddypressbp-templatesbp-legacybuddypressactivityactivity-loop.php</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">7c54d054f6f9afef4a567e46dac3ca73</guid>
				<title>shanebp replied to the topic Integrating BuddyPress with WP Job Manager in the forum Creating &#038; Extending</title>
				<link>http://buddypress.org/support/topic/integrating-buddypress-with-wp-job-manager/#post-184985</link>
				<pubDate>Fri, 11 Jul 2014 18:52:59 +0000</pubDate>

									<content:encoded><![CDATA[<p>You could use the approach in the codex page you&#8217;ve referenced. </p>
<p>Probably easier to use this hook from WP Job manager: &#8216;job_manager_save_job_listing&#8217;<br />
In the function that you create for that hook, use <a href="http://codex.buddypress.org/developer/function-examples/bp_activity_add/" rel="nofollow ugc"> bp_activity_add</a>.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">e2e96f5fb66beb99f8af7cfecde558a3</guid>
				<title>shanebp replied to the topic Adding xprofile data in my Activity Stream in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/adding-xprofile-data-in-my-activity-stream/#post-184912</link>
				<pubDate>Tue, 08 Jul 2014 22:08:26 +0000</pubDate>

									<content:encoded><![CDATA[<p>Yikes &#8211; that was just a skeleton that needs actual code in the function. </p>
<p>Given your code ability and the number of code requests you&#8217;ve recently made on these forums,<br />
I recommend that you <a href="http://buddypress.org/support/forum/plugin-forums/bp-jobs-board/" rel="nofollow ugc">post a job listing here</a>.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">c1fa81add8c87a294594ab10eead766f</guid>
				<title>shanebp replied to the topic Accept and Reject for groups Button Missing  in the forum Showcase</title>
				<link>http://buddypress.org/support/topic/accept-and-reject-for-groups-button-missing/#post-184910</link>
				<pubDate>Tue, 08 Jul 2014 21:10:53 +0000</pubDate>

									<content:encoded><![CDATA[<p>It&#8217;s probably something about how you built the theme.<br />
So the issue appears re bp_button, but is actually due to something else. </p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">a2d8fdc1e10a7954cff3dda8fe879ecd</guid>
				<title>shanebp replied to the topic Adding xprofile data in my Activity Stream in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/adding-xprofile-data-in-my-activity-stream/#post-184903</link>
				<pubDate>Tue, 08 Jul 2014 19:18:22 +0000</pubDate>

									<content:encoded><![CDATA[<p>&gt; Any thoughts?</p>
<p>Use a service like <a href="https://gist.github.com/" rel="nofollow ugc">gist</a> to show the code that you tried. </p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">dbdb144bdbb2e30aadf5afab03c9293b</guid>
				<title>shanebp replied to the topic Adding xprofile data in my Activity Stream in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/adding-xprofile-data-in-my-activity-stream/#post-184899</link>
				<pubDate>Tue, 08 Jul 2014 18:38:41 +0000</pubDate>

									<content:encoded><![CDATA[<p>Never put code into the buddypress plugin files. </p>
<p>Use your theme functions.php or use <a href="http://codex.buddypress.org/plugindev/bp-custom-php/" rel="nofollow ugc">bp-custom.php</a>.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">35b70f358686fcfbfd2873562074eee2</guid>
				<title>shanebp replied to the topic Accept and Reject for groups Button Missing  in the forum Showcase</title>
				<link>http://buddypress.org/support/topic/accept-and-reject-for-groups-button-missing/#post-184897</link>
				<pubDate>Tue, 08 Jul 2014 17:45:35 +0000</pubDate>

									<content:encoded><![CDATA[<p>Do you have debug turned on in wp-config.php ? </p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">214d639a5e4f36afc73897097bbb209b</guid>
				<title>shanebp replied to the topic Adding xprofile data in my Activity Stream in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/adding-xprofile-data-in-my-activity-stream/#post-184896</link>
				<pubDate>Tue, 08 Jul 2014 17:40:44 +0000</pubDate>

									<content:encoded><![CDATA[<p>Use the &#8216;xprofile_updated_profile&#8217; hook</p>
<p><code>function josh_profile_check( $user_id, $posted_field_ids, $errors ) {<br />
  /* check $posted_field_ids to see if one of the fields you are interested in has changed<br />
  if yes, then use bp_activity_add to add to activity stream<br />
  */<br />
}<br />
add_action( &#039;xprofile_updated_profile&#039;, &#039;josh_profile_check&#039;, 10, 3&hellip;</code><span class="activity-read-more" id="activity-read-more-271356"><a href="http://buddypress.org/support/topic/adding-xprofile-data-in-my-activity-stream/#post-184896" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">574c9d3fdfee66a5ee89aeafbe8626ce</guid>
				<title>shanebp replied to the topic Accept and Reject for groups Button Missing  in the forum Showcase</title>
				<link>http://buddypress.org/support/topic/accept-and-reject-for-groups-button-missing/#post-184892</link>
				<pubDate>Tue, 08 Jul 2014 16:49:37 +0000</pubDate>

									<content:encoded><![CDATA[<p>Assign the button to a var, then dump it to see what is returned. </p>
<p><code>$asdf = bp_get_button( etc. )<br />
var_dump( $asdf ); </code></p>
<p>Your bp_button calls look ok, afaik. </p>
<p>Take a look at the function<br />
buddypressbp-corebp-core-template.php ~L. 487</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">54fa6843e021d5ed6920ca15738ecab2</guid>
				<title>shanebp replied to the topic Accept and Reject for groups Button Missing  in the forum Showcase</title>
				<link>http://buddypress.org/support/topic/accept-and-reject-for-groups-button-missing/#post-184870</link>
				<pubDate>Mon, 07 Jul 2014 22:01:54 +0000</pubDate>

									<content:encoded><![CDATA[<p>Use <code>bp_get_button</code></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">a391416df960c25deab7bb8d9fc712d1</guid>
				<title>shanebp replied to the topic add page to a group  in the forum Creating &#038; Extending</title>
				<link>http://buddypress.org/support/topic/add-page-to-a-group/#post-184852</link>
				<pubDate>Mon, 07 Jul 2014 13:30:11 +0000</pubDate>

									<content:encoded><![CDATA[<p>You can do that with the <a href="http://codex.buddypress.org/developer/group-extension-api/" rel="nofollow ugc">Group Extension API</a>.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">4c22ee1e02f10f78dc4a9d2e81251bdb</guid>
				<title>shanebp replied to the topic Did I just loose 10k users? in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/did-i-just-loose-10k-users/#post-184824</link>
				<pubDate>Sat, 05 Jul 2014 13:28:26 +0000</pubDate>

									<content:encoded><![CDATA[<p>Then it would seem to be a WP issue.<br />
Or something happened during the migration. </p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">6eba8a783278af88d863405e00cc9d28</guid>
				<title>shanebp replied to the topic How to display all profile fileds in member list page in the forum Showcase</title>
				<link>http://buddypress.org/support/topic/how-to-display-all-profile-fileds-in-member-list-page/#post-184823</link>
				<pubDate>Sat, 05 Jul 2014 13:27:07 +0000</pubDate>

									<content:encoded><![CDATA[<p>Have you looked at this premium plugin?<br />
<a href="http://www.philopress.com/products/buddyprofiledata/" rel="nofollow ugc">BuddyProfileData</a></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">9d67286bebed9e0f6d1ffc10242d1374</guid>
				<title>shanebp replied to the topic [Resolved] Replace plugin-function from bp-groupblog - double output in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/replace-plugin-function-from-bp-groupblog-double-output/#post-184807</link>
				<pubDate>Fri, 04 Jul 2014 17:17:16 +0000</pubDate>

									<content:encoded><![CDATA[<p>You&#8217;ll probably get a better answer using the <a href="https://wordpress.org/support/plugin/bp-groupblog" rel="nofollow ugc">support forum</a> for that plugin. </p>
<p>My guess would be that you are hooking too early and the remove_action calls fire before those add_actions exist.<br />
Maybe try a hook other than &#8216;plugins_loaded&#8217;.<br />
Have you tried &#8216;bp_include&#8217;. </p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">e18f34ba45d6cd6bd1189c965db2d693</guid>
				<title>shanebp replied to the topic Remove add_friend button in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/remove-add_friend-button/#post-184806</link>
				<pubDate>Fri, 04 Jul 2014 15:04:43 +0000</pubDate>

									<content:encoded><![CDATA[<p><code><br />
function hideAddFriend($button){<br />
	$role = mika_user_has_role( bp_get_member_user_id() );</p>
<p>	if( $role )<br />
	     return &#039;&#039;;</p>
<p>	return $button;<br />
}<br />
add_filter( &#039;bp_get_add_friend_button&#039;, &#039;hideAddFriend&#039;);</p>
<p>function mika_user_has_role( $id, $role = &#039;inactive&#039; ){<br />
	$roles = mika_get_user_roles( $id );<br />
	if ( $roles &amp;&amp; in_array ( $role, $roles ) )&hellip;</code><span class="activity-read-more" id="activity-read-more-269559"><a href="http://buddypress.org/support/topic/remove-add_friend-button/#post-184806" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">70dcb277ed036bbda7220f1c449a00ae</guid>
				<title>shanebp replied to the topic Remove add_friend button in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/remove-add_friend-button/#post-184803</link>
				<pubDate>Fri, 04 Jul 2014 13:56:40 +0000</pubDate>

									<content:encoded><![CDATA[<p>Filters have to return something.<br />
You&#8217;re only returning if a condition is met.<br />
So no buttons will appear. </p>
<p>And you aren&#8217;t passing the $arg, so you can&#8217;t return it. </p>
<p>Try:<br />
<code>function hideAddFriend($button){<br />
	$caps = get_user_meta(bp_get_member_user_id(), &#039;wp_capabilities&#039;, true);<br />
	$roles = array_keys((array)$caps);<br />
	// Hide friendship&hellip;</code><span class="activity-read-more" id="activity-read-more-269539"><a href="http://buddypress.org/support/topic/remove-add_friend-button/#post-184803" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">2e88c6ecd4f96628d3b47a727e5d4e18</guid>
				<title>shanebp replied to the topic Did I just loose 10k users? in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/did-i-just-loose-10k-users/#post-184794</link>
				<pubDate>Thu, 03 Jul 2014 23:52:48 +0000</pubDate>

									<content:encoded><![CDATA[<p>It may be a WP issue.<br />
To confirm, deactivate BP.<br />
If it remains, try deactivating other plugins. </p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">5b1f34d73ca221b65503b9eb95fb8e49</guid>
				<title>shanebp replied to the topic Did I just loose 10k users? in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/did-i-just-loose-10k-users/#post-184787</link>
				<pubDate>Thu, 03 Jul 2014 20:40:53 +0000</pubDate>

									<content:encoded><![CDATA[<p>Based on your screenshots, I&#8217;d guess users were added or duplicated. </p>
<p>Try comparing the total number of rows, dev vs. new install, for the users and activity tables. </p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">7a9a69baab195e213e892196211f3ede</guid>
				<title>shanebp replied to the topic Did I just loose 10k users? in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/did-i-just-loose-10k-users/#post-184783</link>
				<pubDate>Thu, 03 Jul 2014 19:22:18 +0000</pubDate>

									<content:encoded><![CDATA[<p>How did you transfer / copy the database? </p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">de59bc4880b50e86b1c1b97b111694e0</guid>
				<title>shanebp replied to the topic Did I just loose 10k users? in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/did-i-just-loose-10k-users/#post-184780</link>
				<pubDate>Thu, 03 Jul 2014 18:47:10 +0000</pubDate>

									<content:encoded><![CDATA[<p>What do you mean by migrated?<br />
Transferred to a new install?<br />
Upgraded to a new version of BP ?<br />
Both? </p>
<p>Did you use any of the tools in the new version:<br />
&#8230;/wp-admin/tools.php?page=bp-tools</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">1ed9a73ffd9442653642ce6bcc984ec7</guid>
				<title>shanebp replied to the topic importing from Drupal 6 in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/importing-from-drupal-6/#post-184774</link>
				<pubDate>Thu, 03 Jul 2014 15:14:58 +0000</pubDate>

									<content:encoded><![CDATA[<p>BuddyPress uses bbPress for forums.<br />
So you want to import into bbPress.<br />
Try asking <a href="http://bbpress.org/forums/" rel="nofollow ugc">bbpress support</a>.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">c38bda7a7b1d9b45194929c40014dcff</guid>
				<title>shanebp replied to the topic Get E-mail addresses of users without Photos? in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/get-e-mail-addresses-of-users-without-photos/#post-184752</link>
				<pubDate>Wed, 02 Jul 2014 23:49:38 +0000</pubDate>

									<content:encoded><![CDATA[<p>untested:</p>
<p><code><br />
function no_photos() {<br />
	global $wpdb;</p>
<p>	$emails = array();</p>
<p>	$ids = $wpdb-&gt;get_col( &quot;SELECT ID FROM {$wpdb-&gt;prefix}users&quot; );</p>
<p>	foreach( $ids as $id ) { </p>
<p>		$avatar_check = false;</p>
<p>		if ( bp_core_fetch_avatar( array( &#039;item_id&#039; =&gt; $id, &#039;no_grav&#039; =&gt; true, &#039;html&#039;=&gt; false ) ) != bp_core_avatar_default() )<br />
			$avatar_check = true;&hellip;</code><span class="activity-read-more" id="activity-read-more-268783"><a href="http://buddypress.org/support/topic/get-e-mail-addresses-of-users-without-photos/#post-184752" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">3e73aca3561147d4116c1e0077807efe</guid>
				<title>shanebp replied to the topic Buddypress members/group map/locations in the forum Third Party Plugins</title>
				<link>http://buddypress.org/support/topic/buddypress-membersgroup-maplocations/#post-184551</link>
				<pubDate>Sun, 29 Jun 2014 13:41:53 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://buddypress.org/members/jayce103/" rel="nofollow ugc">@jayce103</a></p>
<p>I&#8217;ve done several maps:<br />
Wordpress posts, based on editable location field: <a href="http://www.newspebbles.com/map/" rel="nofollow ugc">http://www.newspebbles.com/map/</a><br />
BuddyPress members, based on signup / profile field: <a href="http://www.deeptimejourney.org/members-map/" rel="nofollow ugc">http://www.deeptimejourney.org/members-map/</a></p>
<p>This does markers just for groups: <a href="https://github.com/naton/bp-group-location" rel="nofollow ugc">https://github.com/naton/bp-group-location</a></p>
<p>The issue with a distributed plugin is the time-based&hellip;<span class="activity-read-more" id="activity-read-more-267055"><a href="http://buddypress.org/support/topic/buddypress-membersgroup-maplocations/#post-184551" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">63d1a8b3bb7e8cac8527bd9fe62cda1a</guid>
				<title>shanebp replied to the topic [Resolved] Output &#034;Not Provided&#034;  if bp_member_profile_data is empty or null in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/output-not-provided-if-bp_member_profile_data-is-empty-or-null/#post-184550</link>
				<pubDate>Sun, 29 Jun 2014 13:23:19 +0000</pubDate>

									<content:encoded><![CDATA[<p>Use <code>bp_get_member_profile_data( &#039;field=Hair&#039; );</code></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">64ed967c24239048b143036c511a6b1f</guid>
				<title>shanebp replied to the topic [Resolved] Output &#034;Not Provided&#034;  if bp_member_profile_data is empty or null in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/output-not-provided-if-bp_member_profile_data-is-empty-or-null/#post-184526</link>
				<pubDate>Sat, 28 Jun 2014 19:53:56 +0000</pubDate>

									<content:encoded><![CDATA[<p>Try:</p>
<p><code>$hair = bp_member_profile_data( &#039;field=Hair&#039; );<br />
if( ! $hair  )<br />
   echo &#039;Hair: Not Provided&#039;;<br />
else<br />
   echo &#039;Hair: &#039; . $hair; </code></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">3ce547e66de3070c38b767394083285c</guid>
				<title>shanebp replied to the topic [Resolved] Timestamps in members timezone in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/timestamps-in-members-timezone/#post-184518</link>
				<pubDate>Sat, 28 Jun 2014 15:00:43 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://buddypress.org/members/colabsadmin/" rel="nofollow ugc">@colabsadmin</a> <a href="http://buddypress.org/members/henrywright-1/" rel="nofollow ugc">@henrywright-1</a> <a href="http://buddypress.org/members/djpaul/" rel="nofollow ugc">@djpaul</a></p>
<p>Here&#8217;s a plugin: <a href="https://github.com/shanebp/BP-Timezones" rel="nofollow ugc">https://github.com/shanebp/BP-Timezones</a></p>
<p>Currently it only uses this filter hook:<br />
&#8216;bp_get_message_thread_last_post_date&#8217;</p>
<p>Hook suggestions ? </p>
]]></content:encoded>
				
				
							</item>
		
	</channel>
</rss>