• Resolved artre8

    (@artre8)


    Wonderfull app!
    I have email confirmation enabled on regular registration form. But when the user is logging in with social connect add-on i don’t wont to ask him to confirm his email address.
    How to disable email confirmation only when logging in with social connect?

    https://wordpress.org/plugins/profile-builder/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,

    Thank you for reaching out to us and for your kind words.

    Since you are using a premium add-on please submit a support ticket because we are not allowed to offer support for paid add-ons on these free forums.

    The Email Confirmation feature works if the user registers using the Registration form and also when registering using Social Connect. If you disable Email Confirmation for Social Connect then users will avoid the Registration Form and use Social Connect instead.

    Best regards,

    Hi,

    I’ve talked with the dev team and in the next update of Social Connect there will be a filter that we could use to stop the Email Confirmation feature when users register through Social Connect.

    I will keep you updated.

    Best regards,

    Thread Starter artre8

    (@artre8)

    Thank you Teodor! I’ll wait for the Social Connect add-on update!

    Plugin Author Georgian Cocora

    (@raster02)

    Hello there,

    Could you submit a support ticket so we can solve this issue ?

    Best Regards.

    Hi,

    Please update Social Connect add-on to the latest version and then follow the steps below in order to stop the Email Confirmation if Social Connect is used:

    1. Create an empty plugin like this: https://gist.github.com/sareiodata/76f701e01db6685829db

    2. Add the following code to the end of it:

    /*
     * Stop the Email Confirmation Feature when using Social Connect add-on
     */
    
    function wppb_sc_set_email_confirmation() {
        return 'off';
    }
    add_filter( 'wppb_sc_email_confirmation_on_off', 'wppb_sc_set_email_confirmation' );

    3. Install this plugin via FTP (copy it inside wp-content/plugins) or create a zip archive with it and install it via the WordPress plugin upload functionality

    Let me know if it works for you.

    Best regards,

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Disable email confirmation with social login’ is closed to new replies.