Skip to content

Instantly share code, notes, and snippets.

@maddisondesigns
Created November 28, 2024 10:32
Show Gist options
  • Save maddisondesigns/9ca4d8bcfd073f15970f692077ab5c72 to your computer and use it in GitHub Desktop.
Save maddisondesigns/9ca4d8bcfd073f15970f692077ab5c72 to your computer and use it in GitHub Desktop.
Remove the WooCommerce site visibility badge from the Dashboard Admin Bar
/**
* Remove the WooCommerce site visibility badge from the Dashboard Admin Bar
*/
function mytheme_remove_woocommerce_site_visibility_badge( $wp_admin_bar ) {
$wp_admin_bar->remove_node( 'woocommerce-site-visibility-badge' );
}
add_action( 'admin_bar_menu', 'mytheme_remove_woocommerce_site_visibility_badge', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment