• 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)
  • Francesco Grasso

    (@francgrasso)

    YITH Support Representative

    Hello there,
    the Block Editor is available only as full page and single istance editor, so it is possible to enable it for the main product description but NOT possible to enable it also for the short description.
    I’m sorry but at this moment this limit can’t be forced ??

Viewing 1 replies (of 1 total)
  • The topic ‘Gutenberg in product page edition’ is closed to new replies.