• Resolved mernanagy

    (@mernanagy)


    Hi,

    I am trying to remove the facebook login button from the wp-admin login page. Is there a function i should add to functions.php ?

    Thank you

Viewing 1 replies (of 1 total)
  • Plugin Author Nextendweb

    (@nextendweb)

    Hi @mernanagy,
    current we do not have option for that on the admin interface.

    You should be able to do what you need, if you remove the following actions:

    add_action('plugins_loaded', function(){
        remove_action('login_form', 'NextendSocialLogin::addLoginFormButtons');
        remove_action('register_form', 'NextendSocialLogin::addLoginFormButtons');
    }, 100);

    Probably this code needs to be added as a plugin and theme’s functions.php won’t work.

    Ps.: We might add an admin setting for this feature. Could you send us an email to be able to send you a test package when it is ready? [email protected]

Viewing 1 replies (of 1 total)
  • The topic ‘Hide fb button from wp-admin login page’ is closed to new replies.