Social Login (NEW)

This feature is added since v3.5.0. The purpose of this feature is to provide a all in one place authentication flow for customers. Customers will have options to login either using social media, phone (OTP) or email & password without leaving the current page.

Demo: https://wordpress.dalenguyen.me/social-login-new/

Video: https://www.youtube.com/watch?v=j_2apwBk9Js

What you need to do is add this shortcode to any page, then you will have a complete social login. Here are some optional options that you may want to add to the shortcode:

  • redirect (optional): redirect to a page after signing in or signing up

  • send_email_confirmation (optional): verify email after signing up

  • email_verify_landing_page (optional): redirect to a page after registering. Must use with send_email_confirmation flag

  • skip_default_email (optional): skip sending default email in case you want to implement your own email server

  • forgot_password_link (optional): lead users to another page if they want to reset their password

  • default_login_form (optional): whether you want to show Sign In or Sign Up form first

  • sign_up_link (optional): if you want to direct user to an external website / app / page for signing up

  • forgot_password_landing_page (Optional) - after user changes password, this will redirect to page that you decide

[firebase_auth
     redirect="/"
     send_email_confirmation="true"
     email_verify_landing_page="/verify-email"
     skip_default_email="false"
     forgot_password_link="/forgot-my-password"
     forgot_password_landing_page="/login"
     default_login_form="true"
     sign_up_link="https://example.com"
 ]
../_images/new-social-login.png

New Social Login