Try:
function jawas_bp_remove_feeds() {
remove_action('bp_actions', 'bp_activity_action_sitewide_feed');
remove_action('bp_actions', 'bp_activity_action_personal_feed');
remove_action('bp_actions', 'bp_activity_action_friends_feed');
remove_action('bp_actions', 'bp_activity_action_my_groups_feed');
remove_action('bp_actions', 'bp_activity_action_mentions_feed');
remove_action('bp_actions', 'bp_activity_action_favorites_feed');
remove_action('bp_actions', 'groups_action_group_feed');
}
add_action('init', 'jawas_bp_remove_feeds');
thank you for that answer , but I put this code or ? php file and on what ?
thank you in advance
this function will be t it added in a future update?
thank
You can put it in your theme/functions.php or in bp-custom.php.
Thank you it works but I still have the button with the rss link (for now against it is empty)
I would like to remove this button rss Site
thank you
Could you find the RSS button element and hide it using CSS?
like
#rss-button {
display: none;
}
I imagine there would be a little bit more to it, but it seems the easiest way. I dont know which element you would need to select though.