Cannot input “Product short description”
-
Hi, I am following this discussion and enabled Gutenberg for editing product.
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 );
But then I cannot input anything in “Product short description”, I can edit short description if I disable Gutenberg, is it a bug?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Cannot input “Product short description”’ is closed to new replies.