Gutenberg in product page edition
-
Hello and thx for your help ??
i would like to know if you think we can make available gutenberg to edit the short description area in the product page when we create a new product ?
i succeed to make gutenberg avalaible in the general description but not in the short description …
this is the code snippet i added to my child theme function.php file :
// Enable Gutenberg editor for WooCommerce function ZZ_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', 'ZZ_activate_gutenberg_product', 10, 2 );
is there someone to get an idea how to make the short description area also with the block editor Gutenberg ?
Thx for any advise ..i did not find yet really
peace
ciju
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Gutenberg in product page edition’ is closed to new replies.