This topic has 5 replies, 3 voices, and was last updated 8 years by Radu.

  • Author
  • #108146
     blux89
    Participant

    how do i control or remove what my activity feed say i want to remove when it say, (became a registered member) and (are now friends)

    Attachments:
    You must be logged in to view attached files.
    #108609
     Laura
    Moderator

    Hello, please try by adding this to functions.php of child theme

    COPY CODE
    
    // Remove (hide) various activities from streams.
    function my_hidden_activities($a, $activities) {
    //if admin we want to know
    //if (is_site_admin())
    //	return $activities;
    
    $nothanks = array(“new_member”, “friendship_created”);
    
    foreach ($activities->activities as $key => $activity) {
    if (in_array($activity->type, $nothanks, true)) {
    unset($activities->activities[$key]);
    $activities->activity_count = $activities->activity_count-1;
    $activities->total_activity_count = $activities->total_activity_count-1;
    $activities->pag_num = $activities->pag_num -1;
    }
    }
    
    // Renumber the array keys to account for missing items.
    $activities_new = array_values( $activities->activities );
    $activities->activities = $activities_new;
    
    return $activities;
    }
    add_action(‘bp_has_activities’, ‘my_hidden_activities’, 10, 2 );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #109377
     blux89
    Participant

    did not work

    #109379
     blux89
    Participant

    the code showed on the top of the page didnt work please help

    #109835
     Laura
    Moderator

    Hello, will assign the ticket to a higher support level who can help and advise you in your query.
    Thanks! 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #113369
     Radu
    Moderator

    Hi,

    Please follow this link : https://buddypress.org/support/topic/removing-unnecessary-activity-feed-actions/

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 6 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic.

Log in with your credentials

Forgot your details?