Does anyone have the answer to this?? Thanks.
Can someone please help with this? Thank you!!
Did you try searching for info re BP rss feeds?
Perhaps this will help:
https://buddypress.org/support/topic/disable-all-rss-feeds-update/
Thank you for replying!
I am not a developer, and I don’t want to affect the site in any way. So I need to be sure that adding this into functions.php will work to remove ONLY the activity feeds from MAILCHIMP:
function bp_remove_feeds() {
remove_action( ‘wp’, ‘bp_activity_action_sitewide_feed’, 3 );
remove_action( ‘wp’, ‘bp_activity_action_personal_feed’, 3 );
remove_action( ‘wp’, ‘bp_activity_action_friends_feed’, 3 );
remove_action( ‘wp’, ‘bp_activity_action_my_groups_feed’, 3 );
remove_action( ‘wp’, ‘bp_activity_action_mentions_feed’, 3 );
remove_action( ‘wp’, ‘bp_activity_action_favorites_feed’, 3 );
remove_action( ‘wp’, ‘groups_action_group_feed’, 3 );
}
add_action(‘init’, ‘bp_remove_feeds’);
Can you answer yes or no?
Please use the code
button when pasting code.
That code will remove all the feeds listed from all rss feeds – it isn’t specific to MailChimp.
There may be a way to remove certain feeds from the MailChimp template – but you should ask them.
Thank you @shanebp for your help. Much appreciated.