- This topic has 4 replies, 2 voices, and was last updated 10 years, 4 months ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eMember › WP eMember General Questions › eMember – custom action after payment process
Tagged: custom action hook
I need do a custom action (call an external page) after the end of payment process (after member’s level update).
How can I do it ?
thanks
Best regards
What setup are you using for the membership payment processing? Directly integrating with PayPal or Clickbank or using eStore?
I’m using a PayPal Button
okay we have an action hook for when a membership level changes after a payment. Here is how to use it:
add_action('emember_membership_changed', 'my_custom_tweaks');
function my_custom_tweaks($args)
{
$member_id = $args['member_id'];
//Do some custom stuff that you need to do.
}
Let me know if that action hook works for you.
works fine !
thank you