XF 2.0 Log in on separate page as opposed to overlay

Wayne T1

Member
Is it possible to change the way the log in page opens. Can you make it so that it opens without being in an overlay?

How would I do this? What is the template name for the header?
 
In PAGE_CONTAINER search for:

Code:
                        <a href="{{ link('login') }}" class="p-navgroup-link p-navgroup-link--textual p-navgroup-link--logIn"
                            data-xf-click="overlay" data-follow-redirects="on">
                            <span class="p-navgroup-linkText">{{ phrase('log_in') }}</span>
                        </a>
                        <xf:if is="$xf.options.registrationSetup.enabled">
                            <a href="{{ link('register') }}" class="p-navgroup-link p-navgroup-link--textual p-navgroup-link--register"
                                data-xf-click="overlay" data-follow-redirects="on">
                                <span class="p-navgroup-linkText">{{ phrase('register') }}</span>
                            </a>
                        </xf:if>


Remove data-xf-click="overlay" for both links (if you want to remove it for log in and register).
 
Top Bottom