Removes the membership tab from the BuddyPress profiles navigation bar in Paid Memberships Pro

Removes the membership tab from the BuddyPress profiles navigation bar in Paid Memberships Pro on child sites.

Snippet Type

Execute on Child Sites

Snippet

function my_pmprobp_remove_nav_item_membership() {

	// Let's first check if PMPro is active and the BuddyPress nav item function exists.
	if ( ! function_exists( 'pmpro_hasMembershipLevel' ) || ! function_exists( 'pmpro_bp_custom_user_nav_item' ) ) {
		return;
	}

	// Remove the membership item from the BuddyPress navigation bar.
	bp_core_remove_nav_item( 'membership_account' );
}
add_action( 'bp_setup_nav', 'my_pmprobp_remove_nav_item_membership', 100 );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.