Skip to content

Instantly share code, notes, and snippets.

@pagelab
Created October 18, 2021 17:05
Show Gist options
  • Save pagelab/2c2c18b3d61eb9d1409701c4c535d590 to your computer and use it in GitHub Desktop.
Save pagelab/2c2c18b3d61eb9d1409701c4c535d590 to your computer and use it in GitHub Desktop.
Enable Block Editor support for WooCommerce products
/**
* Enable Gutenberg support for WooCommerce Products
* @link https://github.com/woocommerce/woocommerce/issues/28419#issuecomment-945430144
*/
add_filter( 'use_block_editor_for_post_type', function ( $can_edit, $post_type ) {
if ( $post_type == 'product' ) {
$can_edit = true;
}
return $can_edit;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment