Skip to content

Instantly share code, notes, and snippets.

@lukecav
Last active December 6, 2017 11:15
Show Gist options
  • Save lukecav/2f13738c965562c1517d08bc368dab11 to your computer and use it in GitHub Desktop.
Save lukecav/2f13738c965562c1517d08bc368dab11 to your computer and use it in GitHub Desktop.
Disable reviews dashboard widget in WooCommerce
function disable_woocommerce_reviews_remove_dashboard_widgets() {
remove_meta_box( 'woocommerce_dashboard_recent_reviews', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'disable_woocommerce_reviews_remove_dashboard_widgets', 40);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment