Hi, i also got issue with one time password
Step1: I create custom style login as bellow:
=========================================
function custom_logo() { ?>
<style type=”text/css”>
body {background: #34566f !important;}
.login #nav a, .login #backtoblog a, .login label {
color: #f3f3f3 !important;
}
.wp-core-ui .button-primary {
background: #31b36b !important;
border: none !important;
text-shadow: none !important;
box-shadow: none !important;
}
.login form {
box-shadow: none !important;
background: transparent !important;
}
#login h1 a {
background-image: url(<?php echo plugins_url(‘images/logo.png’, __FILE__); ?>);
background-size: 280px 80px;
width: 280px;
height: 80px;
}
</style>
<?php }
add_action(‘login_enqueue_scripts’, ‘custom_logo’);
Step 2: Enter the correct username + password. SUBMIT
Step 3: It appear message that one time code that i enter is incorrect
==> Issue, your plugin did NOT appear input box for me enter the one time code at all.
TRY TO FIX:
1) Deactive your plugin. Step 2. i success login as well
2) Remove code custom login style, Step 2+ step 3, appear box enter one time code. Enter code, success login
=======
SUMARY my custom code is simple, nothing wrong. Why your plugin did not work?
How to fix this please.
Thanks
-
This reply was modified 7 years, 1 month ago by oanhtran1804.