Advertisement
designbymerovingi

Adjust myCRED Point Rewards

Dec 3rd, 2014
504
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. /**
  2.  * Adjust myCRED Point Rewards
  3.  * Will move the points payout from when an order is "paid" to when
  4.  * an order is "completed".
  5.  * @version 1.0
  6.  */
  7. add_action( 'after_setup_theme', 'mycred_pro_adjust_woo_rewards', 110 );
  8. function mycred_pro_adjust_woo_rewards() {
  9.  
  10.     remove_action( 'woocommerce_payment_complete', 'mycred_woo_payout_rewards' );
  11.     add_action( 'woocommerce_order_status_completed', 'mycred_woo_payout_rewards' );
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement