Hi @a7madmayo
I’m not really familiar with how Gravity Forms works, but Nextend Social Login uses the same registration process what the default WordPress registration does. So after a registration with NSL a new WordPress user is created, as if they’d used the WordPress registration form. The data related to the social account (like the provider used) is stored in the wp_social_users table.
In the Free version we don’t have option to display which providers are used at which user, but in the Pro Addon it’s possible to display them in the users table at WordPress menu: Users > All users. A new column is added where the social providers are listed, like this:
View post on imgur.com
Unfortunately, there’s no way to display such information in the free version.
As per forum rules, we can’t support or discuss the Pro Addon here, so if you would have further questions about this option, please reach out to us directly at:
https://nextendweb.com/contact-us/nextend-social-login-support/?ref=https://ww.wp.xz.cn/support/topic/gravity-forms-integration-10/
Hi @nextend_ramona ,
I want to redirect the user to edit his profile after register with nextend
I used this code but it redirects first time without login session
and second-time login redirect will success
function redirectAfterRegister() {
wp_redirect( ‘/edit-profile’ );
exit;
}
add_action(‘nsl_register_new_user’, ‘redirectAfterRegister’, 10, 2);
Any help?
Hi @a7madmayo
If you just want to redirect after registration, you could use the Fixed redirect url for Register option at Global Settings > General:
https://nextendweb.com/nextend-social-login-docs/global-settings/
This would always redirect to the given URL after the registration, and you wouldn’t need to write custom codes.