Created
June 17, 2019 08:39
-
-
Save akther80/cfb10eeb0abaa37a7dda6ba55100a302 to your computer and use it in GitHub Desktop.
Electro v2 - Move Short Description below Price
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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