Use this hook to execute custom code after a user’s membership level is changed or cancelled. This hook passes the new level ID, the user ID of the WordPress user, and the level ID being cancelled (if specified).
do_action( 'pmpro_after_change_membership_level', int $level_id, int $user_id, int $cancel_level ); |
Parameters
- $level_id
- int; the level ID being changed to
- $user_id
- int; the user ID whose level is changing
- $cancel_level
- int; the level ID of the level being cancelled if specified
Source
File: https://github.com/strangerstudios/paid-memberships-pro/blob/master/includes/functions.php
View in Source CodeRelated Articles and Recipes
Using Subscription Delays Add On for One-Time, Credit Card Required Trials By Kimberly Coleman
Automatically Approve Previously Approved Members By Andrew Lima
Send Members a confirmation email when admins change their membership level. By Jason Coleman
Send the New User Email to Members Added via Zapier By Travis Lima
Hide Pending or Denied Members from your Member Directory and Frontend Profile Page By Andrew Lima
Create and Manage Affiliates by Membership Level Using AffiliateWP By Kimberly Coleman
Set a Member Author’s Posts to Draft When Membership is Cancelled By Kimberly Coleman
Apply a BuddyPress “Member Type” on Membership Checkout or Level Change By Kimberly Coleman
Offer Trial Memberships That Can Only Be Used Once By Andrew Lima