At the time of using WordPress CMS, sometimes we face lots of problems, and almost every problem has a solution. Today, in this tutorial I will tell you how to fix extra model pop up login when commenting/login. When someone tries to login or comment on WordPress blog post, it shows pop to login. If you put, Username: admin, Password: admin then you can comment and log in. The problem appears in both times when you want to comment and when you want to login.
There are some ways to fix this problem. First, you can reach out to your hosting provider to fix this. Your hosting provider injects this extra pop up to fight against Brute Force Attacks. However, I will show you how to fix it by yourself.
Related articleđ Wp-malware: Wp-vcd.php, wp-tmp.php, wp-feed.php removal
How to fix extra pop up login when comment in WordPress
To fix âshow pop up when login for commentingâ , go to .htaccess file andput the below scripts and click save.
<FilesMatch "wp-comments-post.php">
AuthType None
require all granted
</FilesMatch>
How to fix extra pop up login when login WordPress
To fix this extra pop up login when you tries to login, go to .htaccess file abd put the below scripts and click save.
<FilesMatch "wp-login.php">
AuthType None
require all granted
</FilesMatch>
Read more> How to Change the Color of Address Bar in Mobile Browser
To find out .htaccess file, go to Cpanel, and you will see this. If you do not see this, set âshow hidden fileâ. Another way, if you are a Yoast SEO user, go to WordPress dashboard, click SEO, then go to Tools. Click âFile editorâ and you will see .htaccess file under robots.txt.
I hope, you have successfully fixed your problem. If you still face even a signal problem regrading pop login, let me know by dropping a comment.