binaffitt
Forum Replies Created
-
Forum: Plugins
In reply to: [WPS Hide Login] Password reset link invalid@seinomedia Hi! And thanks for reply. With Woocommerce installed if you go to “my-account” page and where you put your account credentials, there is below “forgot your password” link. True that, it is not a bug, it is just something to consider, depending on situation. I might now know how bots found this admin url that was hidden. I just removed that link because my situation in webpage is that users will use same credentials to view hidden content.
(Is there anyway to delete comments here in this forum, not just edit?)
Forum: Plugins
In reply to: [WPS Hide Login] Password reset link invalidWith google search “password link always invalid wordpress”
* Cookies
* Cache (wordpress)I would try to do everything from start with another browser to check if cookies, or clear whole browser cache
Are you using Woocommerce also?
https://www.mail-mechanic.com/password-reset-fixes#password-reset-link-invalidForum: Plugins
In reply to: [WPS Hide Login] Password reset link invalidHere is original message that I made with another account:
I would like to report bug to same subject also about password reset, it shows admin address that is supposed to be hidden?
https://domain.com/hiddenadminaddress/?action=lostpasswordYou can hide lost password text by code in functions.php (I use Woody snippets plugin because you can easily on/off code):
// Remove Lost Password Link
function vpsb_remove_lostpassword_text ( $text ) {
if ($text == ‘copy here text from your website which indicate lost password in your language’){$text = ”;}
return $text;
}
add_filter( ‘gettext’, ‘vpsb_remove_lostpassword_text’ );`Thanks and sorry @asif-sk to post to your subject but I was just about to post with same subject.`