• Resolved eljara

    (@sawasblog)


    I would like to send referral code on user registration with a POST call , is there a way to add arguments to registration link

    thank you

Viewing 1 replies (of 1 total)
  • Plugin Support Laszlo

    (@laszloszalvak)

    Hi @sawasblog

    We offer multiple actions and filters for developers.
    For example, the {{provider-id}}_register_redirect_url filter can be used to override the URL where the users should be redirected after successful registration and login. So here you can add the extra query string as well.

    Usage:
    Instead of the {{provider-id}} you need to enter the ID of the provider, e.g.:

    add_filter('google_register_redirect_url', function ($redirectUrl, $provider) {
        return 'https://example.com';
    }, 10, 2);

    Best regards,
    Laszlo.

Viewing 1 replies (of 1 total)
  • The topic ‘How can i send values while registring a new user’ is closed to new replies.