Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save UltimateWoo/7de13f1226d1e36319a8 to your computer and use it in GitHub Desktop.
Save UltimateWoo/7de13f1226d1e36319a8 to your computer and use it in GitHub Desktop.
Reposition WooCommerce Points and Rewards table on My Account page
<?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