Code-Snippets-Functions/Execute a function on a child site/WooCommerce/move-short-description-above-add-to-cart-button.txt

5 lines
316 B
Text

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' );