<?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 | param | Mentions</title>
	<link>https://buddypress.org/members/param/activity/mentions/</link>
	<atom:link href="https://buddypress.org/members/param/activity/mentions/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed mentioning param.</description>
	<lastBuildDate>Sat, 11 Apr 2026 06:46:23 +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">475ac25599450be14f26cfa8ecf6bd36</guid>
				<title>GyziieDK replied to the topic Exclude Site Role From Member Directory in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/exclude-site-role-from-member-directory/#post-335570</link>
				<pubDate>Sat, 09 Nov 2024 10:15:22 +0000</pubDate>

									<content:encoded><![CDATA[<p>Figured it out (I&#8217;m stupid lol).</p>
<p>I can confirm that the snippet from Brajesh Singh still works. Just make sure to place it into your <strong>bp-custom.php</strong> (/wp-content/plugins/bp-custom.php). Turns out my role wasn&#8217;t called &#8220;Basic&#8221; (as shown/named within the backend). Since I use Paid Membership Pro it used <strong>pmpro_role_1</strong> set by PMP.</p>
<p>Remember to change&hellip;<span class="activity-read-more" id="activity-read-more-3680777"><a href="https://buddypress.org/support/topic/exclude-site-role-from-member-directory/#post-335570" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b105f5e75acbae103c32b28ae6b51b6a</guid>
				<title>Varun Dubey replied to the topic Help with labels in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/help-with-labels/#post-333107</link>
				<pubDate>Tue, 06 Feb 2024 16:38:11 +0000</pubDate>

									<content:encoded><![CDATA[<p>You can use the WordPress gettext filter. </p>
<p>This filter allows you to intercept and modify text before it&#8217;s displayed on the page. Here&#8217;s an example of how you can use it to change a specific string in BuddyPress:</p>
<p><code>/**<br />
 * Translates specific strings in BuddyPress to new values.<br />
 * This function hooks into the &#039;gettext&#039; filter provided by&hellip;</code><span class="activity-read-more" id="activity-read-more-3575337"><a href="https://buddypress.org/support/topic/help-with-labels/#post-333107" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b6ea53fab05fe93ecda659585977f0b2</guid>
				<title>Mauro replied to the topic Member Loop only MemberPress members in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/member-loop-only-memberpress-members/#post-320167</link>
				<pubDate>Sat, 24 Jul 2021 09:21:58 +0000</pubDate>

									<content:encoded><![CDATA[<p>I&#8217;ve been testing this and found out that the code as is done in my previous post will break the members search feature from 3rd party plugins. So I modified this to use the &#8220;exclude&#8221; argument instead of the &#8220;include&#8221;.</p>
<p>Since doing this is going to be a heavy call on the server, I&#8217;ve decided to store my exclusion list in the DB as an option. I&#8217;m&hellip;<span class="activity-read-more" id="activity-read-more-2776749"><a href="https://buddypress.org/support/topic/member-loop-only-memberpress-members/#post-320167" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">66712e8d4c3ee67bf6be43c934cb4253</guid>
				<title>Mauro replied to the topic Member Loop only MemberPress members in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/member-loop-only-memberpress-members/#post-320118</link>
				<pubDate>Wed, 21 Jul 2021 14:19:45 +0000</pubDate>

									<content:encoded><![CDATA[<p>Please note the above solution won&#8217;t work if you have a custom table prefix (i.e. different than &#8220;wp_&#8221;).<br />
I&#8217;ve put together this function using the bp_after_has_members_parse_args filter. Posting it here in case anyone needs it. So far it looks like it works fine.</p>
<p><code>/**<br />
 * Only list active MemberPress members in the members directory.<br />
 * sources:<br />
 *&hellip;</code><span class="activity-read-more" id="activity-read-more-2774131"><a href="https://buddypress.org/support/topic/member-loop-only-memberpress-members/#post-320118" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">5c193961e2790ec7abee4ec0f7ea3b8d</guid>
				<title>Slava Abakumov replied to the topic Email all users of updated Forums in the forum Creating &#038; Extending</title>
				<link>https://buddypress.org/support/topic/email-all-users-of-updated-forums/#post-263644</link>
				<pubDate>Thu, 09 Feb 2017 21:58:30 +0000</pubDate>

									<content:encoded><![CDATA[<p>Yes, you can use a hook in a function <code>bp_activity_add()</code> called the same.</p>
<p><code>/**<br />
 * Fires at the end of the execution of adding a new activity item, before returning the new activity item ID.<br />
 *<br />
 * <a href="https://buddypress.org/members/since/" rel="nofollow ugc">@since</a> 1.1.0<br />
 *<br />
 * <a href="https://buddypress.org/members/param/" rel="nofollow ugc">@param</a> array $r Array of parsed arguments for the activity item being added.<br />
 */<br />
do_action( &#039;bp_activity_add&#039;, $r );<br />
</code></p>
<p>So you should&hellip;<span class="activity-read-more" id="activity-read-more-714106"><a href="https://buddypress.org/support/topic/email-all-users-of-updated-forums/#post-263644" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">aae4b626dffb57e51812ba5e65dfbc09</guid>
				<title>Joshua Blevins started the topic Question about bp_activity_action in the forum Creating &#038; Extending</title>
				<link>https://buddypress.org/support/topic/question-about-bp_activity_action/</link>
				<pubDate>Wed, 23 Dec 2015 21:26:09 +0000</pubDate>

									<content:encoded><![CDATA[<p>Right now I am trying to make my own custom entry.php for my activity loops. When looking at the bp-default one to get a good idea of what one should look like i ran into the following code.</p>
<p><code>&lt;?php bp_activity_action(); ?&gt;</code></p>
<p>Now I found this function in bp-activity-template.php in the github project, but that was not too helpful either. The file&hellip;<span class="activity-read-more" id="activity-read-more-499203"><a href="https://buddypress.org/support/topic/question-about-bp_activity_action/" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">372cc673994b025eb3899a68b4450d19</guid>
				<title>Henry Wright replied to the topic urgent !!!! need a hook which is called during click og comment button urgent! in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/urgent-need-a-hook-which-is-called-during-click-og-comment-button-urgent/#post-244199</link>
				<pubDate>Wed, 09 Sep 2015 20:07:05 +0000</pubDate>

									<content:encoded><![CDATA[<blockquote><p>do we have to passed argument along with that hook…</p></blockquote>
<p>It isn&#8217;t mandatory but you can if you want to. <code>$comment_id</code>, <code>$r</code> and <code>$activity</code> can be passed to your custom function.</p>
<p>Ref:</p>
<p><code><br />
<a href="https://buddypress.org/members/param/" rel="nofollow ugc">@param</a> int   $comment_id ID of the newly posted activity comment.<br />
<a href="https://buddypress.org/members/param/" rel="nofollow ugc">@param</a> array $r          Array of parsed comment arguments.<br />
<a href="https://buddypress.org/members/param/" rel="nofollow ugc">@param</a> int   $activity   ID of the activity i&hellip;</code><span class="activity-read-more" id="activity-read-more-459333"><a href="https://buddypress.org/support/topic/urgent-need-a-hook-which-is-called-during-click-og-comment-button-urgent/#post-244199" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">f1e9eb1706e8872ed30b47c310940994</guid>
				<title>Marc started the topic Bug in bp_notifications_get_notifications_for_user hook or misunderstood in the forum Installing BuddyPress</title>
				<link>https://buddypress.org/support/topic/bug-in-bp_notifications_get_notifications_for_user-hook-or-misunderstood/</link>
				<pubDate>Tue, 25 Aug 2015 10:02:40 +0000</pubDate>

									<content:encoded><![CDATA[<p>Hi everyone,</p>
<p>I&#8217;am currently try to add custom notification from a non BuddyPress component. I&#8217;m using this hooks:<br />
<code>bp_notifications_get_registered_components</code><br />
<code>bp_notifications_get_notifications_for_user</code><br />
and this function:<br />
<code>bp_notifications_add_notification</code></p>
<p>Everything works well except the hook <code>bp_notifications_get_notifications_for_user</code>. My problem&hellip;<span class="activity-read-more" id="activity-read-more-453618"><a href="https://buddypress.org/support/topic/bug-in-bp_notifications_get_notifications_for_user-hook-or-misunderstood/" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">e698016349fff369be6c7a4c37ae4b31</guid>
				<title>https://www.rebelmouse.com/NetworkheadsoftheArabLiberatio/ replied to the topic  in the forum</title>
				<link>http://buddypress.org/support/topic/gennetworkarabeditors/#post-181745</link>
				<pubDate>Sat, 19 Apr 2014 11:04:30 +0000</pubDate>

									<content:encoded><![CDATA[<p>&lt;?php<br />
/**<br />
 * WordPress User Page<br />
 *<br />
 * Handles authentication, registering, resetting passwords, forgot password,<br />
 * and other user handling.<br />
 *<br />
 * @package WordPress<br />
 */</p>
<p>/** Make sure that the WordPress bootstrap has run before continuing. */<br />
require( dirname(__FILE__) . &#8216;/wp-load.php&#8217; );</p>
<p>// Redirect to https login if forced to use SSL<br />
if (&hellip;<span class="activity-read-more" id="activity-read-more-229756"><a href="http://buddypress.org/support/topic/gennetworkarabeditors/#post-181745" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">afa730c7e20caac8671fc999fc635d53</guid>
				<title>yaakhi replied to the topic Redirecting Logged in users to activity.. in the forum Third Party Plugins</title>
				<link>http://buddypress.org/support/topic/redirecting-logged-in-users-to-activity/#post-166696</link>
				<pubDate>Mon, 24 Jun 2013 03:41:22 +0000</pubDate>

									<content:encoded><![CDATA[<p>Sorrry but could not find the line you mentioned 🙁 here is the whole bp_profile_as_homepage_fork.php file `&lt;?php<br />
/*<br />
Plugin Name: BP Profile as Homepage Fork<br />
Description: Sets the user BP Profile as homepage on the site for logged in users. This emulates Facebook.<br />
Author: Mort3n<br />
Version: 1.0<br />
License: GPL2<br />
*/</p>
<p>/*  Copyright 2013  Mort3n</p>
<p>    This&hellip;<span class="activity-read-more" id="activity-read-more-209701"><a href="http://buddypress.org/support/topic/redirecting-logged-in-users-to-activity/#post-166696" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">3a7feb49b1e7521538bb942f46e8dcbb</guid>
				<title>meg@info replied to the topic [Resolved] This script blocks oEmbed in the forum Miscellaneous</title>
				<link>http://buddypress.org/support/topic/this-script-blocks-oembed/#post-161641</link>
				<pubDate>Sun, 14 Apr 2013 20:47:31 +0000</pubDate>

									<content:encoded><![CDATA[<p>Hi,</p>
<p>Add this code yo your functions.php, i was add filter to embed_maybe_make_link wp function.</p>
<p>It work!! but mybe there is more good solution for auto-embeding image in bp (personaly, i was search since for long time for solution, but i dont find it :p).<br />
<code>/**<br />
 * Check if url is image<br />
 * &lt;a href=&#039;http://buddypress.org/community/members/param/&#039;&hellip;</code><span class="activity-read-more" id="activity-read-more-206383"><a href="http://buddypress.org/support/topic/this-script-blocks-oembed/#post-161641" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">dd824955f70b3792f9ddce4f3d451402</guid>
				<title>Brajesh Singh replied to the topic Link to a private message in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/link-to-a-private-message/#post-153168</link>
				<pubDate>Sat, 16 Feb 2013 07:41:23 +0000</pubDate>

									<content:encoded><![CDATA[<p>Here is a simple solution. You will need to add following lines to your theme&#8217;s functions.php or bp-custom.php</p>
<p>`</p>
<p>/**<br />
 *<br />
 * <a href="http://buddypress.org/community/members/param/" rel="nofollow ugc">@param</a> int $to_id the user id to whom we plan to send the message<br />
 * <a href="http://buddypress.org/community/members/param/" rel="nofollow ugc">@param</a> [&hellip;]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">2e5a131a982d9a2ea3b8c706b11bf726</guid>
				<title>danbpfr replied to the topic Creating large group of new users - need to turn off email notifications for all of them in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/creating-large-group-of-new-users-need-to-turn-off-email-notifications-for-all-of-them/#post-140146</link>
				<pubDate>Fri, 24 Aug 2012 16:38:24 +0000</pubDate>

									<content:encoded><![CDATA[<p>Hi,<br />
try this in bp-custom.php<br />
<code>remove_filter( &#039;wpmu_signup_blog_notification&#039;, &#039;bp_core_activation_signup_blog_notification&#039;, 1, 7 );</code></p>
<p>source infos buddypress /bp-core/bp-core-filters.php</p>
<p>The concerned filter do this<br />
/***<br />
* bp_core_filter_blog_welcome_email()<br />
*<br />
* Replace the generated password in the welcome email.<br />
* This will not filter when the&hellip;<span class="activity-read-more" id="activity-read-more-321316"><a href="https://buddypress.org/support/topic/creating-large-group-of-new-users-need-to-turn-off-email-notifications-for-all-of-them/#post-140146" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">ba7cbc559f9c3d34717f024c93853040</guid>
				<title>Brajesh Singh replied to the forum topic Display age on profile page in the group How-To and Troubleshooting</title>
				<link>http://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/display-age-on-profile-page/#post-110828</link>
				<pubDate>Sun, 02 Oct 2011 14:04:11 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://buddypress.org/community/members/kirkslater/" rel="nofollow ugc"></a><a href="http://buddypress.org/community/members/kirkslater/" rel="nofollow ugc">@kirkslater</a>,<br />
Since you asked it in another thread, here is what you need</p>
<p>Put this function in your functions.php or bp-custom.php</p>
<p>`<br />
/**<br />
 * Get Age from BuddyPress date of Birth<br />
 * <a href="http://buddypress.org/community/members/param/" rel="nofollow ugc"></a><a href="http://buddypress.org/community/members/param/" rel="nofollow ugc">@param</a> string [&hellip;]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">9a06ab2d3acf9173627a273e0af82f81</guid>
				<title>Brajesh Singh replied to the topic Display age on profile page in the forum How-to &#038; Troubleshooting</title>
				<link>http://buddypress.org/support/topic/display-age-on-profile-page/#post-121850</link>
				<pubDate>Sun, 02 Oct 2011 14:04:10 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="http://buddypress.org/community/members/kirkslater/" rel="nofollow ugc"></a><a href="http://buddypress.org/community/members/kirkslater/" rel="nofollow ugc">@kirkslater</a>,<br />
Since you asked it in another thread, here is what you need</p>
<p>Put this function in your functions.php or bp-custom.php</p>
<p><code><br />
/**<br />
* Get Age from BuddyPress date of Birth<br />
* &lt;a href=&#039;http://buddypress.org/community/members/param/&#039; rel=&#039;nofollow&#039;&gt;<a href="http://buddypress.org/community/members/param/" rel="nofollow ugc">@param</a>&lt;/a&gt; string $dob_field_name :name of the DOB field in xprofile, like Dob or Date of Birth<br />
*&hellip;</code><span class="activity-read-more" id="activity-read-more-213858"><a href="http://buddypress.org/support/topic/display-age-on-profile-page/#post-121850" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">60c360fb18d4dfc68ffe55afdc32cfbf</guid>
				<title>Svenl77 posted on the forum topic BuddyPress-Links 0.4.x Releases and Support in the group Third Party Components &#038; Plugins</title>
				<link>http://buddypress.org/community/groups/third-party-components-plugins/forum/topic/buddypress-links-04x-releases-and-support/?topic_page=4#post-51975</link>
				<pubDate>Mon, 03 May 2010 09:08:50 +0000</pubDate>

									<content:encoded><![CDATA[<p>The plugin is not 100% update friendly, if I disable buddypress the site crashes. Fatal error: Call to undefined function bp_core_load_template() in /data/wwwcust/sv3-132/html/wp-content/plugins/buddypress-links/bp-links-core.php on line 277 I fixed this bug for my version with if ( defined( &#8216;BP_VERSION&#8217; ) ) ` /** * Use this only inside of screen&hellip;<span class="activity-read-more" id="activity-read-more-3944"><a href="http://buddypress.org/community/groups/third-party-components-plugins/forum/topic/buddypress-links-04x-releases-and-support/?topic_page=4#post-51975" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
		
	</channel>
</rss>