Created
March 17, 2020 16:10
-
-
Save leewillis77/9f8f20f56eff59e91b0a698921a811a7 to your computer and use it in GitHub Desktop.
Re-order MSRP display on product pages (WooCommerce MSRP extension)
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
<?php | |
add_action( 'init', function () { | |
global $woocommerce_msrp_frontend; | |
remove_action( | |
'woocommerce_single_product_summary', | |
[ $woocommerce_msrp_frontend, 'show_msrp' ], | |
7 | |
); | |
add_action( | |
'woocommerce_single_product_summary', | |
[ $woocommerce_msrp_frontend, 'show_msrp' ], | |
12 | |
); | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment