peterdog
Forum Replies Created
-
Forum: Reviews
In reply to: [Stealth Login Page] Fantastically simple.I’m so happy it’s what you were looking for.
Forum: Plugins
In reply to: [Stealth Login Page] Version 2.1.0 not workingThanks for checking back in. Glad I was able to resolve it for you with these latest changes to the coding.
Forum: Plugins
In reply to: [Stealth Login Page] New WP install, default logins not hiddenWell, if you do that, then your WP login/out URL is going to return to /wp-login.php with nothing after it and be redirected and it makes the entire function above that (the reason for 2.1.0) non-functioning. Same-same. The function is negated when you do that.
Translated:
$old = array( "/(wp-login\.php)/"); $new = array( "wp-login.php" );See the box below the editor box with instructions on code? Or that little code button above this box as you type a reply to me?
Forum: Plugins
In reply to: [Stealth Login Page] Version 2.1.0 not workingI can’t replicate that – hit my contact form on my website (Google me) and I’ll get your login to see what is up.
Forum: Plugins
In reply to: [Stealth Login Page] New WP install, default logins not hiddenActually, this
add_action( 'admin_init', 'slp_email_admin' ); function slp_email_admin() { global $slp_options, $custom_url; if ( isset( $slp_options['enable'] ) && $slp_options['question'] && $slp_options['answer'] && isset ( $_POST['email-admin'] ) && current_user_can( 'manage_options' ) ) { $to = get_bloginfo( 'admin_email' ); $subject = sprintf( __( 'Custom login URL for %s', 'stealth-login-page' ), get_bloginfo( 'name' ) ); $message = sprintf( __( 'Your custom login URL for %1$s is %2$s', 'stealth-login-page' ), get_bloginfo( 'name' ), $custom_url ); wp_mail( $to, $subject, $message ); } }Forum: Plugins
In reply to: [Stealth Login Page] New WP install, default logins not hiddenI’m not going to rev the plugin for this change, so here is what I edited in /includes/settings-page.php Line 8… grab the whole thing and replace the entire function.
add_action( 'admin_init', 'slp_email_admin' ); function slp_email_admin() { global $slp_options, $custom_url; if ( isset( $slp_options['enable'] ) && $slp_options['question'] && $slp_options['answer'] && isset ( $_POST['email-admin'] ) && current_user_can( 'manage_options' ) ) { $to = get_bloginfo( 'admin_email' ); $subject = sprintf( __( 'Custom login URL for %s', 'stealth-login-page' ), get_bloginfo( 'name' ) ); $message = sprintf( __( 'Your custom login URL for %1$s is %2$s', 'stealth-login-page' ), get_bloginfo( 'name' ), $custom_url; wp_mail( $to, $subject, $message ); } }Forum: Plugins
In reply to: [Stealth Login Page] New WP install, default logins not hiddenThanks for pointing out that URL. It was using an old convention:
wp_login_url() . ‘?’ . $slp_options[‘question’] . ‘=’ . $slp_options[‘answer’] )
I’ve replaced the wp_login_url() with the new URL so it was thus repeating it. I’m going to fix that as I type.
Forum: Plugins
In reply to: [Stealth Login Page] Version 2.1.0 not working2.1.1 is live. Please update immediately.
Forum: Plugins
In reply to: [Stealth Login Page] New WP install, default logins not hidden2.1.1 is live. Please update immediately.
Forum: Plugins
In reply to: [Stealth Login Page] New WP install, default logins not hiddenThanks for the head’s up and the information.
Forum: Plugins
In reply to: [Stealth Login Page] New WP install, default logins not hidden2.1.0 has an issue. I’m updating to 2.1.1 at the moment as soon as I rectify a conditional logic issue.
Forum: Plugins
In reply to: [Stealth Login Page] Version 2.1.0 not workingI am so embarrassed. I noticed the double wp-login.php and mentioned it to a friend, but we didn’t realize that the stealth was gone.
It obviously worked before because now I have a lockout on my main site today so I’m going to rectify that immediately. Sincere apologies.
Forum: Plugins
In reply to: [Stealth Login Page] New WP install, default logins not hiddenIt shouldn’t redirect until the checkbox to enable it is checked, which is defaulted unchecked upon install. Did it say exactly that? “?question=answer” in the URL? If so, I can see where that originated from.
Go ahead and grab the latest version, though – what version did you upload into a new install?
Forum: Plugins
In reply to: [Stealth Login Page] Stealth Login Lost Password LinkI have found a fix for the lost password link AND the logout link in the admin toolbar. Upgrade to 2.1.0 when you see it in your dashboard or on the repository.
Forum: Plugins
In reply to: [Stealth Login Page] Don't remember passwordIt is the most direct method technologically possible to redirect. If there is a delay, it is your hosting doing a sucky job or your domain DNS sucking. I checked your site and your redirect time is the same time it takes for your domain to resolve the first time on the initial site load.
Re: lost password that was already addressed in the past day or so right before this thread: http://wordpress.org/support/topic/stealth-login-lost-password-link which I will leave as unresolved and this one resolved.