Advertisement
designbymerovingi

trick customization is approved

Aug 16th, 2016
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. add_filter( 'mycred_add_finished', 'mycred_pro_trick_success_on_transfer', 999, 2 );
  2. function mycred_pro_trick_success_on_transfer( $result, $request ) {
  3.  
  4.     extract( $request );
  5.  
  6.     if ( $ref == 'rewards_given' && $type == 'mycred_default' && $amount < 0 )
  7.         return true;
  8.  
  9.     return $result;
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement