Xucce
Disable Login Popup - Printable Version

+- Xucce (https://xucce.com)
+-- Forum: Forums (https://xucce.com/forum-1.html)
+--- Forum: MyBB Development (https://xucce.com/forum-4.html)
+---- Forum: Tutorials (https://xucce.com/forum-11.html)
+---- Thread: Disable Login Popup (/thread-34.html)



Disable Login Popup - Erik - 05-31-2025

How to Disable the Modal Login Popup

To disable the login modal popup and use the standard login page instead, follow these steps:

Step 1: Open the Guest Welcome Header Template
Go to:
ACP → Templates & Style → Templates → Your Theme → Header Templatesheader_welcomeblock_guest

Step 2: Find This Code (or Similar)
Code:
<a href="{$mybb->settings['bburl']}/member.php?action=login" onclick="$('#quick_login').modal({ fadeDuration: 250, keepelement: true, zIndex: (typeof modal_zindex !== 'undefined' ? modal_zindex : 9999) }); return false;" class="login">{$lang->welcome_login}</a>


Locked Content

Guests cannot view hidden content. Please log in.


This will redirect users directly to the full login page instead of opening the popup modal.