Loading...

Reply To: How to access user information from PieRegister

Home Forums Pie-Register 2.0 Support How to access user information from PieRegister Reply To: How to access user information from PieRegister

#10004764
Pie Register
Participant

Hello,

You can POST registrant data to any 3rd party on the fly using HOOKs PR provides. Like the following example:

add_action('pie_register_after_register_validate','my_custom_post_registration',10,1);
function my_custom_post_registration($user){
    //Do something here
    //You have user Object and POST data here...
}

For accessing any field you need to have the Field name that can be pulled from browser console.

Thanks