Advertisement
designbymerovingi

Thank You page based on point type

Jun 6th, 2016
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. add_filter( 'mycred_buycred_thankyou_url', 'mycred_pro_adjust_buycred_thanks', 10, 2 );
  2. function mycred_pro_adjust_buycred_thanks( $url, $gateway ) {
  3.  
  4. $point_type = $gateway->get_point_type();
  5.  
  6. // Return the url for default point type
  7. if ( $point_type == 'mycred_default' )
  8. return 'url';
  9.  
  10. // Return the url for other point types
  11. return 'url';
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement