Replies: 0
I’m trying to remove WPFC from admin bar with:
add_action( 'admin_bar_menu', 'remove_wpfc',999 );
function remove_wpfc( $wp_admin_bar ) {
$wp_admin_bar->remove_node( 'wpfc-toolbar-parent' );
}
but it doesn’t seems like proper id for WPFC. There’s no option in settings also, so i’ve run out of ideas and tbh it’s kind of annoying for me.
How can i deal with it?