Advertisement
verygoodplugins

Untitled

Apr 8th, 2018
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. $mepr_user = new MeprUser( $user_id );
  2.  
  3. if ( $mepr_user->is_already_subscribed_to( $product_id ) ) {
  4.     return;
  5. }
  6.  
  7. // Create the MemberPress transaction
  8. $txn             = new MeprTransaction();
  9. $txn->user_id    = $user_id;
  10. $txn->product_id = $product_id;
  11. $txn->txn_type   = 'subscription_confirmation';
  12. $txn->gateway    = 'manual';
  13. $txn->create_free_transaction( $txn );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement