<?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 | Jonas | Activity</title>
	<link>https://buddypress.org/members/jonaskjodt/activity/</link>
	<atom:link href="https://buddypress.org/members/jonaskjodt/activity/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed for Jonas.</description>
	<lastBuildDate>Mon, 06 Apr 2026 07:31:11 +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">718438aa3d8a0576a85eb27d1cacbbbd</guid>
				<title>Jonas replied to the topic Buddypress activity plus pludin issues in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/buddypress-activity-plus-pludin-issues/#post-273756</link>
				<pubDate>Tue, 29 May 2018 18:45:05 +0000</pubDate>

									<content:encoded><![CDATA[<p>Ah alright, my mistake 🙂</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">3516bc1453ae6f1068645e18ee480063</guid>
				<title>Jonas replied to the topic Buddypress activity plus pludin issues in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/buddypress-activity-plus-pludin-issues/#post-273751</link>
				<pubDate>Tue, 29 May 2018 17:44:39 +0000</pubDate>

									<content:encoded><![CDATA[<p>I had some issues with this earlier too, using the code supplied in <a href="https://premium.wpmudev.org/forums/topic/buddypress-activity-plus-for-buddypress-groups-not-showing-on-custom-template" rel="nofollow ugc">this thread</a> should clear up your issue.</p>
<p>Here&#8217;s the code if you&#8217;re unable to click the link for some reason. You should put it in your bp-custom.php file.</p>
<p><code>function toa_check_page_reqiurement_and_lie_to_buddypress ($is, $component) {<br />
    global $bp;<br />
    if ($is || &quot;activity&quot; !==&hellip;</code><span class="activity-read-more" id="activity-read-more-1182926"><a href="https://buddypress.org/support/topic/buddypress-activity-plus-pludin-issues/#post-273751" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">28537904018107180ceb55e0c25ccc80</guid>
				<title>Jonas replied to the topic How to add report/block member option? in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/how-to-add-report-block-member-option/#post-271987</link>
				<pubDate>Thu, 12 Apr 2018 09:22:51 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="https://github.com/hwdsbcommons/BP-Moderation" rel="nofollow ugc">You could use this</a>.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">a4ffab3a7fa3151888b1f443114f08d0</guid>
				<title>Jonas replied to the topic How to add og:title and og:description meta tags for Facebook on BuddyPress. in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/how-to-add-ogtitle-and-ogdescription-meta-tags-for-facebook-on-buddypress/#post-271981</link>
				<pubDate>Wed, 11 Apr 2018 19:47:08 +0000</pubDate>

									<content:encoded><![CDATA[<p>There&#8217;s different ways of solving it, <a href="https://buddypress.org/support/topic/bussdypress-title-and-seo-yoast-problem/" rel="nofollow ugc">you can look to this old post for some pointers</a>.</p>
<p>or you could do something like this</p>
<p><code>&lt;?php<br />
function opengraph_tags() {<br />
    // defaults<br />
    $title = get_bloginfo(&#039;title&#039;);<br />
    $excerpt = get_bloginfo(&#039;description&#039;);</p>
<p>    if( bp_current_component() ) {<br />
        global $post;<br />
        setup_postdata( $post);&hellip;</code><span class="activity-read-more" id="activity-read-more-1131257"><a href="https://buddypress.org/support/topic/how-to-add-ogtitle-and-ogdescription-meta-tags-for-facebook-on-buddypress/#post-271981" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">fa961c0fca7ce49a1b8520dffdaf904d</guid>
				<title>Jonas replied to the topic Prevent subscribers from creating groups in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/prevent-subscribers-from-creating-groups/#post-271687</link>
				<pubDate>Sun, 01 Apr 2018 20:24:14 +0000</pubDate>

									<content:encoded><![CDATA[<p>You could try something like this</p>
<p><code>add_filter( &#039;bp_user_can_create_groups&#039;, &#039;create_groups_hide_for_roles&#039; );<br />
function create_groups_hide_for_roles($can)<br />
	{<br />
	$user = wp_get_current_user();<br />
	$banned_roles = array(<br />
		&#039;subscriber&#039;,<br />
		&#039;editor&#039; // fill in the roles who can&#039;t make groups<br />
	);<br />
	if (array_intersect($banned_roles, $user-&gt;roles))<br />
	{<br />
		return&hellip;</code><span class="activity-read-more" id="activity-read-more-1120404"><a href="https://buddypress.org/support/topic/prevent-subscribers-from-creating-groups/#post-271687" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">fd498a46087fe19371c1659b2a7c3e9e</guid>
				<title>Jonas replied to the topic changing default avatar - codex info not working in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/changing-default-avatar-codex-info-not-working/#post-271679</link>
				<pubDate>Sat, 31 Mar 2018 20:56:23 +0000</pubDate>

									<content:encoded><![CDATA[<p>Digging into it a bit more, it seems gravatars influences it. You can disable the gravatars like so</p>
<p><code>add_filter( &#039;bp_core_fetch_avatar_no_grav&#039;, &#039;__return_true&#039; );</code></p>
<p>followed by using your original code</p>
<p><code>define ( &#039;BP_AVATAR_DEFAULT&#039;, &#039;http://example.com/default-avatar.jpg&#039; );<br />
define ( &#039;BP_AVATAR_DEFAULT_THUMB&#039;,&hellip;</code><span class="activity-read-more" id="activity-read-more-1119665"><a href="https://buddypress.org/support/topic/changing-default-avatar-codex-info-not-working/#post-271679" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">c40e5be9cde259c25c1e280e3f775360</guid>
				<title>Jonas replied to the topic changing default avatar - codex info not working in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/changing-default-avatar-codex-info-not-working/#post-271678</link>
				<pubDate>Sat, 31 Mar 2018 20:42:04 +0000</pubDate>

									<content:encoded><![CDATA[<p>You could probably do something like the following to achieve it as well</p>
<p><code>function hanza3_add_default_avatar( $url ){<br />
	return get_stylesheet_directory_uri() .&#039;/images/imagename.jpg&#039;;<br />
}<br />
add_filter( &#039;bp_core_mysteryman_src&#039;, &#039;hanza3_add_default_avatar&#039; );</code></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">cbbcf53fb94d5fa73da62772a1212e12</guid>
				<title>Jonas replied to the topic Link is not embedding in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/link-is-not-embedding/#post-271423</link>
				<pubDate>Fri, 16 Mar 2018 19:54:23 +0000</pubDate>

									<content:encoded><![CDATA[<p>You could give <a href="https://wordpress.org/plugins/iframely/" rel="nofollow ugc">Iframely</a> a shot, it should convert any useful link into a rich snippet embedded post.</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">a45253d1f40de7d036f88c3546774144</guid>
				<title>Jonas replied to the topic Display more than 20 members per page in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/display-more-than-20-members-per-page/#post-269869</link>
				<pubDate>Tue, 02 Jan 2018 00:23:01 +0000</pubDate>

									<content:encoded><![CDATA[<p><a href="https://stackoverflow.com/questions/31558464/how-to-change-members-per-page-in-buddypress-members-directory" rel="nofollow ugc">Did you try this solution?</a></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">072c9a68a0fc44394f8fb44fffb1be5c</guid>
				<title>Jonas replied to the topic Localized time stamp broken with 2.7 update in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/localized-time-stamp-broken-with-2-7-update/#post-260536</link>
				<pubDate>Sat, 29 Oct 2016 00:11:59 +0000</pubDate>

									<content:encoded><![CDATA[<p>Your time stamps looks correct, I&#8217;m guessing you mean the Danish translation isn&#8217;t working correctly? </p>
<p>You can grab the newest Danish Buddypress translation here <a href="https://translate.wordpress.org/locale/da/default/wp-plugins/buddypress" rel="nofollow ugc">https://translate.wordpress.org/locale/da/default/wp-plugins/buddypress</a> followed by merging your current buddypress-da_DK.po file in poedit like this&hellip;<span class="activity-read-more" id="activity-read-more-631480"><a href="https://buddypress.org/support/topic/localized-time-stamp-broken-with-2-7-update/#post-260536" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">8da9a032782236e1f9a5f3f33bbcef53</guid>
				<title>Jonas replied to the topic Scalability in the forum Installing BuddyPress</title>
				<link>https://buddypress.org/support/topic/scalability-2/#post-260369</link>
				<pubDate>Wed, 26 Oct 2016 09:08:14 +0000</pubDate>

									<content:encoded><![CDATA[<p>Right now you have 62 external Javascript scripts and 35 external stylesheets, thats quite excessive. You can see how it impacts your website by making a test through gtmetrix ( <a href="https://gtmetrix.com/reports/isociali.com/LjIWHWX5" rel="nofollow ugc">https://gtmetrix.com/reports/isociali.com/LjIWHWX5</a> click on waterfall )</p>
<p>There are loads of ways to speed your site up, its all in minimizing the transactions from&hellip;<span class="activity-read-more" id="activity-read-more-629302"><a href="https://buddypress.org/support/topic/scalability-2/#post-260369" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">d25c882255e7ae2e1895b3ecf1a9cbe5</guid>
				<title>Jonas replied to the topic Activity updates only available to friends in the forum Creating &#038; Extending</title>
				<link>https://buddypress.org/support/topic/activity-updates-only-available-to-friends/#post-254815</link>
				<pubDate>Sat, 18 Jun 2016 21:33:31 +0000</pubDate>

									<content:encoded><![CDATA[<p>like Henry mentioned, you can use the bp_parse_args. You could do the following to achieve it:</p>
<p>// Activity stream -&gt; friends only</p>
<p><code>function my_friends_only_activity_args( $args ) {</p>
<p>    if( ! bp_is_activity_directory() || !  is_user_logged_in() ) {<br />
        return $args;<br />
    }</p>
<p>    $user_id = get_current_user_id();</p>
<p>    $user_ids =&hellip;</code><span class="activity-read-more" id="activity-read-more-574979"><a href="https://buddypress.org/support/topic/activity-updates-only-available-to-friends/#post-254815" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">06b8bb4af17a79dfd099ac5bb82568ed</guid>
				<title>Jonas replied to the topic Remove notification count unless there is 1 or more notifications pending? in the forum How-to &#038; Troubleshooting</title>
				<link>https://buddypress.org/support/topic/remove-notification-count-unless-there-is-1-or-more-notifications-pending/#post-254613</link>
				<pubDate>Thu, 16 Jun 2016 03:29:53 +0000</pubDate>

									<content:encoded><![CDATA[<p>Hi,</p>
<p>you can control whether or not to show the alerts through their css classes. </p>
<p>I&#8217;m guessing you&#8217;ve copyied Buddypresses way of notification alerts to your own template’s custom header, something like this svn.buddypress.org/branches/2.0/bp-notifications/bp-notifications-adminbar.php</p>
<p>0 notifications is governed through the .no-alert class &#8211; a&hellip;<span class="activity-read-more" id="activity-read-more-573904"><a href="https://buddypress.org/support/topic/remove-notification-count-unless-there-is-1-or-more-notifications-pending/#post-254613" rel="nofollow ugc">[Read more]</a></span></p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b2a80d3d7bc822da5aa14a6bb34e3697</guid>
				<title>Jonas&#039;s profile was updated</title>
				<link>https://buddypress.org/updates/p/522375/</link>
				<pubDate>Fri, 12 Feb 2016 11:01:40 +0000</pubDate>

				
									<slash:comments>0</slash:comments>
				
							</item>
		
	</channel>
</rss>