Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • in reply to: Trouble Using Mobile Navigation Menu #122479
     lopreg
    Participant
    Not marked as solution
    in reply to: Activity Feed Replacing Default WordPress feed #103793
     lopreg
    Participant

    You are right @sharmstr. I doesn’t appear to solve the problem.
    Am I really the only one having this issue? Or is anyone else having the same challenge?
    I have tried the codes below to completely remove buddypress feeds but none works.

    COPY CODE
    
    function bpfr_hide_rss_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( 'groups_action_group_feed', 'groups_action_group_feed' );    
    }
    add_action('init', 'bpfr_hide_rss_feeds');
    
    COPY CODE
    
    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');
    
Viewing 2 posts - 1 through 2 (of 2 total)

Log in with your credentials

Forgot your details?