Câu lệnh để chuyển đổi trình soạn thảo Trong woocommerce thì thường để soạn thảo thường, bài viết thì dùng Gutenberg, vì thế
Copy and Paste vào file functions.php của theme đang dùng ( hoặc Child theme đang dùng)
To Enable Gutenberg Editor in WooCommerce Post Editor
// Enable Gutenberg in WooCommerce
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 );