Hello,
I need to insert data , update_user_option()
, into a custom user profile field when they are demoted, renew or change their membership level.
I have tried hooking my function like this:
add_action('ws_plugin__s2member_after_auto_eot_system', 'efti_membership_status_update');
add_action('ws_plugin__s2member_during_auto_eot_system_during_demote', 'efti_membership_status_update');
However it doesn’t seem to have fired.
Can anyone point out what hooks I could use to catch any membership upgrades, downgrades or renewals and run an action after?
Thanks