Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Alimir
Created April 25, 2022 15:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Alimir/8afecc8ec66052d58c30d648aa99e096 to your computer and use it in GitHub Desktop.
Save Alimir/8afecc8ec66052d58c30d648aa99e096 to your computer and use it in GitHub Desktop.
Disable "votes" from buddypress filters
<?php
add_action( 'init', function(){
remove_action( 'bp_activity_filter_options', 'wp_ulike_bp_activity_filter_options', 20 ); // Activity Directory
remove_action( 'bp_member_activity_filter_options', 'wp_ulike_bp_activity_filter_options', 20 ); // Member's profile activity
remove_action( 'bp_group_activity_filter_options', 'wp_ulike_bp_activity_filter_options', 20 ); // Group's activity
}, 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment