XF 2.2 Disable overlay for Login / Register

rosal

Active member
Hi how to disable overlay for this

Register
Log in
Contact us

Because this function wont work with cloudflare wen configured to prevent spam with a captcha, dont show the cloudflare captacha and show the info in the overlay box.:
oops! we ran into some problems
 
Last edited:
Solution
In PAGE_CONTAINER template
data-xf-click="{{ ($xf.options.contactUrl.overlay OR $xf.options.contactUrl.type == 'default') ? 'overlay' : '' }}"
remove this line
Thanks, i have found the 3 in the same template, and worked for
Register
Log in


But how to remove this for Contact us?
Code:
</xf:if>
            <div class="p-footer-row-opposite">
                <ul class="p-footer-linkList">
                    <xf:if is="$xf.visitor.canUseContactForm()">
                        <xf:if is="$xf.contactUrl">
                            <li><a href="{$xf.contactUrl}" data-xf-click="{{ ($xf.options.contactUrl.overlay OR $xf.options.contactUrl.type == 'default') ? 'overlay' : '' }}">{{ phrase('contact_us') }}</a></li>
                        </xf:if>
                    </xf:if>
 
Top Bottom