How to remove “replies”
-
Hi there
I want to remove “replies” on subnav.
I can remove “mentions” with code A, but can not remove “replies” with code B.
Why??
code A:
function my_remove_mentions_subnav(){ global $bp; if ( $bp->current_component == $bp->activity->slug ) { bp_core_remove_subnav_item( $bp->activity->slug, 'mentions' ); bp_core_remove_subnav_item( $bp->activity->slug ); } } add_action( 'wp', 'my_remove_mentions_subnav', 2 );
code B:
function my_remove_replies_subnav(){ global $bp; if ( $bp->current_component == $bp->forums->slug ) { bp_core_remove_subnav_item( $bp->forums->slug, 'replies' ); bp_core_remove_subnav_item( $bp->forums->slug ); } } add_action( 'wp', 'my_remove_replies_subnav', 2 );
Thanks.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.