Hello,
i have a problem with a big login box that appear for some seconds at the top of the page every time a new page is loaded.
Please look this screenshot: 
I don’t need users login in my website, so I’d like to remove this box directly from the code, deleting the code that generates it.
Can you tell me please in which php file can i find this code?
Thank you very much,
kind regards,
Francesco
Hello,
i’ve seen that i have e plugin conflict with WP Rocket.
I can’t uninstall wp rocket, so, if you can kindly tell me in which php file of the theme i can find this part of code, I can delete it and so I solved the problem. 🙂
Thank you very much,
kind regards,
Francesco
Hello !
Unfortunately we cannot know for sure what are the exact files that conflict. So we are not able to help you with that. WP Rocket has not been tested so we cannot offer support for it due to the support policy: https://forum.tagdiv.com/newspaper-theme-support/
Thank you !
Hello !
That option doesn’t look like the Newspaper Theme one. Check to see if this is enabled: https://www.screencast.com/t/QmGnRczQbK
Also provide a link to your website.
Thank you !
Hello,
no, that option is turn off.
My website: http://www.tuttosullegalline.it
Thank you,
kind regards,
Francesco
Hello !
Please contact us via email at contact@tagdiv.com and provide the following:
– admin url and credentials
– cPanel url and credentials
– A link to this topic in order to identify you
Our team will take a look !
Thank you !
Hello,
i have sent now to contact@tagdiv.com all login data.
Thank you very much for your help,
kind regards,
Francesco
Only solution which i found is the following (it removes also all extra css for login).
IN
wp-content/plugins/td-composer/legacy/Newspaper/parts/header/td-login-modal.php
REMOVE EVERYTHING
********************************************************************************************
IN
plugins/td-composer/mobile/parts/menu-mobile.php
plugins/td-composer/legacy/Newspaper/parts/menu-mobile.php
REMOVE :
<!– login section –>
<?php if (td_util::get_option(‘tds_login_mobile’) != ‘hide’) { ?>
<div class=”td-menu-login-section”>
<?php
if ( is_user_logged_in() ) {
locate_template(‘parts/logged.php’, true);
} else {
locate_template(‘parts/login.php’, true);
}
?>
</div>
<?php } ?>
AND
<!– register/login section –>
<?php if (td_util::get_option(‘tds_login_mobile’) != ‘hide’) { ?>
<div id=”login-form” class=”td-register-section”>
<?php locate_template(‘parts/register.php’, true); ?>
</div>
<?php } ?>
Thanks so much for this! It seems you’re the only one who has been able to solve this problem!
MESSAGE TO TAGDIV DEVS: Please remove this login bloat for users who do not need it! It has been causing CLS Web Vitals issues since I updated to the latest version of the Newspaper theme.