Move the short description above add to cart button in WooCommerce

Move the short description above add to cart button in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

function move_short_description() {
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
    add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 9 );
}
add_action( 'woocommerce_single_product_summary', 'move_short_description' );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.