Reply To: Disable Buddypress Sitewide Activity RSS
@bp-help … thank you for the code snips but can you clarify the last remove action is correct … e.g., remove_action( 'groups_action_group_feed', 'groups_action_group_feed',3 ); shouldn’t this be use...
View ArticleReply To: Disable Buddypress Sitewide Activity RSS
@bphelp Thanks, unfortunately that didn’t work either. For anyone wondering. I found a plugin that finally blocks the BP feeds. It is for wordpress but did the trick. The plugin is here:...
View ArticleReply To: Disable Buddypress Sitewide Activity RSS
@tse11 Use init hook instead of bp_init! Place in bp-custom.php : https://codex.buddypress.org/plugindev/bp-custom-php/ function pcfbp_lite_cut_nonreg_visitor_rss_feed() { if ( !is_user_logged_in() )...
View ArticleReply To: Disable Buddypress Sitewide Activity RSS
@aces Thanks much, that was a great idea. Unfortunately it didn’t work. There has got to be a way to at least make these feeds private. If anyone knows, please let me know.
View ArticleReply To: Disable Buddypress Sitewide Activity RSS
@tse11 try replacing the ‘wp’ with ‘bp_actions’ function bp_remove_feeds() { remove_action( 'bp_actions', 'bp_activity_action_sitewide_feed', 3 ); remove_action( 'bp_actions',...
View ArticleDisable Buddypress Sitewide Activity RSS
I have perused the forums and have only found some very old topics on how to disable the newsfeed for sitewide activity. I placed the following code in my functions.php but if I go to the link, the...
View Article