Skip to content

Instantly share code, notes, and snippets.

@akther80
Created June 17, 2019 08:39
Show Gist options
  • Save akther80/cfb10eeb0abaa37a7dda6ba55100a302 to your computer and use it in GitHub Desktop.
Save akther80/cfb10eeb0abaa37a7dda6ba55100a302 to your computer and use it in GitHub Desktop.
Electro v2 - Move Short Description below Price
add_action( 'init', 'ec_child_move_description_below_price', 5 );
function ec_child_move_description_below_price() {
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 26 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment