Skip to content

Instantly share code, notes, and snippets.

@lukecav
Created May 10, 2023 21:26
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/8726b6868a6d429d60f087a2c4462e6c to your computer and use it in GitHub Desktop.
Save lukecav/8726b6868a6d429d60f087a2c4462e6c to your computer and use it in GitHub Desktop.
Fix the product tab is locked issue in WooCommerce 7.7.0
function reset_product_template( $post_type_args ) {
if ( array_key_exists( 'template', $post_type_args ) ) {
unset( $post_type_args['template'] );
}
return $post_type_args;
}
add_filter( 'woocommerce_register_post_type_product', 'reset_product_template' );