• Resolved Ernie

    (@ernieh)


    Is it possible to add a checkbox to the login/registration form for TOS & Privacy. We have added the links per each social media account and do have the links but need to have a verification process.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Heateor Support

    (@heateor)

    Is it possible to add a checkbox to the login/registration form for TOS & Privacy

    By Login form, if you mean the login form presented in the Social Login authentication window, that won’t be possible. Because those authentication windows are part of the corresponding social network. Instead, you can add a link to TOS and Privacy below the Social Login icons using the following code in functions.php file of your active theme:

    function my_social_login_privacy_policy() {
    	echo 'LINK_TO_TOS_AND_PRIVACY';
    }
    add_action( 'login_form', 'my_social_login_privacy_policy', 100 );
    Thread Starter Ernie

    (@ernieh)

    Didn’t think so but had to ask. Thanks for the quick reply.

    Plugin Author Heateor Support

    (@heateor)

    You’re welcome.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Adding Checkbox to login form’ is closed to new replies.