Advertisement
designbymerovingi

Example: 50% discount for Gold Rank when buying content

Mar 31st, 2016
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. add_filter( 'mycred_sell_content_post_prefs', 'mycredpro_custom_sell_content_price' );
  2. function mycredpro_custom_sell_content_price( $sales_data ) {
  3.  
  4.     $user_id = get_current_user_id();
  5.     $rank    = mycred_get_users_rank( $user_id );
  6.  
  7.     // Gold rank gets 50% off on price
  8.     if ( $rank == 'Gold' )
  9.         $sales_data['price'] = $sales_data['price'] / 2;
  10.  
  11.     return $sales_data;
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement