وردپرس

Bug with activate Gutunberg in the product description page


Hello

The hack to activate Gutunberg in the product description page no longer works since the last update.

It shows me the classic editor… (c’est relou vous imaginez même pas, incompréhensible qu’on utilise ce hack)

A solution ? Did you finally add this functionality via a plugin?


function reset_product_template( $post_type_args ) {
	if ( array_key_exists( 'template', $post_type_args ) ) {
		unset( $post_type_args['template'] );
	}

	return $post_type_args;
}
add_filter( 'woocommerce_register_post_type_product', 'reset_product_template' );

// Enable Gutenberg Blocks in Product Descriptions
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', 20, 2 );


// Show taxonomy for woocommerce category and tags
function enable_taxonomy_rest( $args ) {
    $args['show_in_rest'] = true;
    return $args;
}
add_filter( 'woocommerce_taxonomy_args_product_cat', 'enable_taxonomy_rest' );
add_filter( 'woocommerce_taxonomy_args_product_tag', 'enable_taxonomy_rest' );

Note: I am using Gutunberg to write this message on this forum…. just please tell me you have a solution, free or paid

این خبر را در ایران وب سازان مرجع وب و فناوری دنبال کنید

مشاهده پاسخ های این مطلب
———————————————
این مطلب از سایت انجمن وردپرس گردآوری شده است و کلیه حقوق مطلق به انجمن وردپرس می باشد در صورت مغایرت و یا بروز مشکل اطلاع دهید تا حذف گردد

منبع: انجمن وردپرس

دکمه بازگشت به بالا