Deactivate Social Platform Login (Facebook, Google)
I did not find any option to "deactivate" social media platform login… (I mean in the "authorization system page login" AND the "personal member profile")
Can someone give me a tip?
I dont want people to be able to login via social platforms because I see this as a security risk. In panic I removed the buttons with CSS-Code… not a very "clean" method.
Please advise!


Workaround from Beardo:
To restore the old authorization page look:
/* SOCIAL LOGIN BUTTONS HIDE */
.WaGadgetAuthorizationRequired .openAuthFormContainer {
border-right: none;
max-width: 0px;
padding-right: 40px;
display: none;
}
/* PADDING TO SOCIAL LOGIN BUTTONS HIDE */
.WaGadgetAuthorizationRequired .authFormContainer {
padding-left: 0;
}
To remove the login buttons from the member directory personal profiles (at the bottom):
/* MEMBER SOCIAL LOGIN BUTTONS HIDE */
#socialLoginContainer, #idSocialLoginContainer {
display: none;
}
Just copy/paste the above and update your “user.css” file.
-
Alain commented
At the moment, it is not possible to disable it on the Login page. You can only disable it for the Login form gadget. We're looking to change this.
-
Carol Paterick commented
YEP, I just asked the same thing. We don't want people to use social media for logins either and I want those buttons disabled.