Created
June 1, 2021 19:11
-
-
Save manuelhudec/ff98a68d5c164d86962684ea7ab2ac96 to your computer and use it in GitHub Desktop.
WooCommerce - Enable Gutenberg support for products
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function activate_gutenberg_product( $can_edit, $post_type ) { | |
if ( $post_type == 'product' ) { | |
$can_edit = true; | |
} | |
return $can_edit; | |
} | |
add_filter( 'use_block_editor_for_post_type', 'activate_gutenberg_product', 10, 2 ); | |
// enable taxonomy fields for woocommerce with gutenberg on | |
function enable_taxonomy_rest( $args ) { | |
$args['show_in_rest'] = true; | |
return $args; | |
} | |
add_filter( 'woocommerce_taxonomy_args_product_cat', 'enable_taxonomy_rest' ); | |
add_filter( 'woocommerce_taxonomy_args_product_tag', 'enable_taxonomy_rest' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment