Skip to content

Instantly share code, notes, and snippets.

@lukecav
Created November 12, 2019 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukecav/0621c20eea752d2078aa94d0e5a8655c to your computer and use it in GitHub Desktop.
Save lukecav/0621c20eea752d2078aa94d0e5a8655c to your computer and use it in GitHub Desktop.
Remove Yoast SEO metabox on products in WooCommerce
function remove_yoast_metabox_product(){
remove_meta_box('wpseo_meta', 'product', 'normal');
}
add_action( 'add_meta_boxes', 'remove_yoast_metabox_product',11 );