Created
November 28, 2024 10:32
-
-
Save maddisondesigns/9ca4d8bcfd073f15970f692077ab5c72 to your computer and use it in GitHub Desktop.
Remove the WooCommerce site visibility badge from the Dashboard Admin Bar
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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