Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nicolabavaro/307981365280702cb9ec7e00c608a9af to your computer and use it in GitHub Desktop.
Save nicolabavaro/307981365280702cb9ec7e00c608a9af to your computer and use it in GitHub Desktop.
Remove Content Editor on Product Editor Page
function remove_product_editor() {
remove_post_type_support( 'product', 'editor' );
}
add_action( 'init', 'remove_product_editor' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment