Created
July 11, 2015 16:27
-
-
Save UltimateWoo/7de13f1226d1e36319a8 to your computer and use it in GitHub Desktop.
Reposition WooCommerce Points and Rewards table on My Account page
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 | |
/** | |
* Reposition the points table, generated by the Points and Rewards module, from the top to the bottom of the My Account page. | |
* @author UltimateWoo | |
* @link https://www.ultimatewoo.com/how-to-reposition-woocommerce-points-and-rewards-account-table/ | |
*/ | |
remove_action( 'woocommerce_before_my_account', 'woocommerce_points_rewards_my_points' ); | |
add_action( 'woocommerce_after_my_account', 'woocommerce_points_rewards_my_points' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment