Code-Snippets-Functions/Execute a function on a child site/WooCommerce/disable-setup-dashboard-widget.txt
Sebastian Moran 6e5158757a
Update disable-setup-dashboard-widget.txt
Expand what it does.
2021-09-24 12:15:19 -06:00

5 lines
267 B
Text

// Disable setup widget in WooCommerce
function disable_woocommerce_setup_remove_dashboard_widgets() {
remove_meta_box( 'wc_admin_dashboard_setup', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'disable_woocommerce_setup_remove_dashboard_widgets', 40);