WordPress Membership Plugin
What I’m trying to achieve is to redirect users to a page where they can publish posts which they have paid for.
So i’d like to know if right after the payment i can redirect them to a certain page and if there is a hook to check if the payment went through successfully.
Kind regards
Marco
I see the list of all the members.
Hi,
Yes I did Enable Redirect to Last Page. but it still does not work.
Yes I am.
Do you know how to modify the registration form by adding the functionality to upload a profile picture of the user without using the membership plugin’s addon?
Regards
Marco
Hi mbrsolution,
Thanks for your reply.
I have also found anothe solution by accesing the user object like this:
<?php
$auth = SwpmAuth::get_instance();
$user_first_name = $auth->userData->user_name;
$user_email = $auth->userData->email;
?>
Thanks again