Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Removing the username & password field, leaving only SSO?
Best Answer
-
Todd Chief Product Officer Vanilla Staff
Answers
If they have to be logged in using your wp, why not do a redirect to wp login , if they are not logged into forums. Then hide vanilla login etc
There was an error rendering this rich post.
Thanks for your reply, that's pretty much what I'd like to know how to do, how to 'hide vanilla login etc'. Please care to elaborate.
Good question. I dunno lol
There was an error rendering this rich post.
Modify methods to be somewhat like MainForm, in the /applications/dashboard/design style.css file:
.Methods {
width: 170px;
height: 120px;
padding-left: 20px;
padding-right: 20px;
}
In signin.php (/applications/dashboard/views/entry), remove the entry and multiple/single entry methods class from their div:
echo '
<
div>';
//replaces echo '
<
div class="Entry'.$CssClass.'">';
Don't render the main sign-in form, comment it out, same file:
// Render the main signin form.
/*
echo '
';
*/
Code tags don't seem to be working, here's my post in plain text: pastie.org/private/lctfitmsldlrc0kqeqt2a .
I'd just use css in your custom theme. Firebug is your friend.