Thread Starter
nadajp
(@nadajp)
sorry for the bad formatting, in any case, I just added this:
&& !isset($_GET['verification_code'])
Thread Starter
nadajp
(@nadajp)
Radiok, thanks so much, but it looks like I just figured it out. In the Shopper Press template, I found this:
if ( $pagenow == "wp-login.php" && $_GET['action'] != 'logout' && !isset($_GET['key'])){
add_action('init', 'cp_login_init', 98);
}
so I added this check:
if ( $pagenow == "wp-login.php" && $_GET['action'] != 'logout' && !isset($_GET['key']) <strong>&& !isset($_GET['verification_code'])</strong>)
…
Thanks for your help and for your plugin!
Thread Starter
nadajp
(@nadajp)
Update: I tested the plugin on my other site and it worked. I believe the only difference is that on this site I am using the Shopper Press template. I don’t know what could be causing this so if someone can just point me in the right direction so I know where to look for possible conflicts, I’d appreciate it.