AndyB Well-known member Jul 31, 2013 #1 The default Log in or Sign up link calls a jquery slider. I would like to change this so the link calls this page instead: I've looked at the templates, but it appears there are several templates that deal with this and I'm not sure which one to modify. Any help greatly appreciated. Last edited: Jul 31, 2013
The default Log in or Sign up link calls a jquery slider. I would like to change this so the link calls this page instead: I've looked at the templates, but it appears there are several templates that deal with this and I'm not sure which one to modify. Any help greatly appreciated.
Jake Bunce Well-known member Jul 31, 2013 #2 For reference: http://xenforo.com/community/resources/change-login-bar-to-an-overlay.480/ Use the first block of code (the javascript) in the first template edit to disable the "scrolling" functionality. That should leave it as a regular hyperlink. Upvote 0 Downvote
For reference: http://xenforo.com/community/resources/change-login-bar-to-an-overlay.480/ Use the first block of code (the javascript) in the first template edit to disable the "scrolling" functionality. That should leave it as a regular hyperlink.
AndyB Well-known member Jul 31, 2013 #3 That worked perfectly, Jake. Now my iPad and iPhone users will have the AutoFill function working so they can have their username and password entered automatically. Adding the following code to the login_bar template did the trick: Code: <script> XenForo.LoginBar = function(a){}; </script> Upvote 0 Downvote
That worked perfectly, Jake. Now my iPad and iPhone users will have the AutoFill function working so they can have their username and password entered automatically. Adding the following code to the login_bar template did the trick: Code: <script> XenForo.LoginBar = function(a){}; </script>