• Resolved flim0

    (@flim0)


    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?

    • This topic was modified 3 years, 7 months ago by flim0.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Gabriel – a11n

    (@gabrielfuentes)

    Hi there ??

    By default, WooCommerce uses the Classic Editor for managing/editing/adding new products. Gutenberg editor is not integrated with the WooCommerce Core plugin.

    It sounds like you are using an external plugin to do this. So in this case, I’d recommend you to reach out to the support team of the third-party plugin you are using as they are better equipped to help you out.

    This support forum is for questions and issues around the core WooCommerce plugin itself, and compatibility issues with third-party plugins are outside of the scope of support we are able to provide.

    Cheers!

    Plugin Support Gabriel – a11n

    (@gabrielfuentes)

    We’ve not seen any activity on this thread for a while, so I’m marking this thread as resolved.

    Hopefully, you were able to find a solution to your problem! If you have further questions, please feel free to open a new topic.

    Cheers!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Cannot input “Product short description”’ is closed to new replies.