how to remove option from buddypress activity dropdown
-
WP 4.5.3 – BP 2.6 – bbP 2.6 alpha -2016
I want to remove the 2 bbp related options (topics & replies) from BP’s site wide activity filter dropdown.
I’m using this function, but it has no effect:
function remove_activity_filters( $bbp_buddypress = null ) { if ( bp_is_active( 'activity' ) && bp_is_activity_component() ) { // Remove forum filters in site wide activity streams remove_action( 'bp_activity_filter_options', array( bbpress()->extend->buddypress->activity, 'activity_filter_options' ), 10 ); } add_action( 'bbp_buddypress_loaded', 'remove_activity_filters' );
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.