Code: Select all
function activate_gutenberg_product($can_edit, $post_type) {
if ($post_type === 'product') {
$can_edit = true; // Enable the block editor for products
}
return $can_edit;
}
add_filter('use_block_editor_for_post_type', 'activate_gutenberg_product', 10, 2);