Guest User

Untitled

a guest
Jul 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 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. }
Add Comment
Please, Sign In to add comment