MaximeWPS
Forum Replies Created
-
Forum: Plugins
In reply to: [WPS Hide Login] Login page not displaying header and footerTry to refresh permalinks saving your settings again in Settings –> Permalinks. It should work then.
Forum: Plugins
In reply to: [WPS Hide Login] Wordfence still reports hack attemptsOK
OK
Yes, that’s what I meant. Attempts should stop know.Forum: Plugins
In reply to: [WPS Hide Login] Login page not displaying header and footerHello,
Thanks for using WPS Hide Login.
Are you sure your code is looking for wp_login_page() and not /wp-login.php. In the second case, as you renamed the page URL, the code isn’t applied to the new address.
Forum: Plugins
In reply to: [WPS Hide Login] New login page returns 404That’s the way WordPress works. Plain permalinks add ? in slugs. Then, even if you set WPS Hide Login with “/login” as secret slug, it will be renamed by WordPress : /?login. And then, it won’t work because it will be different from the slug you set up.
Forum: Plugins
In reply to: [WPS Hide Login] Wordfence still reports hack attemptsHello,
Thanks for using WPS Hide Login.
Is you login page public ?
Do you allow users to log in from comments area ?
Did you deactivate xml-rpc in Wordfence settings ?
Forum: Plugins
In reply to: [WPS Hide Login] New login page returns 404Hello,
Thanks for using WPS Hide Login.
WPS Hide Login doesn’t work with ? in the slug. You should remove it.
To log in, you’ll have to deactivate the plugin reaching your files by FTP. Rename the plugin folder in wp-content/plugins.
Forum: Plugins
In reply to: [WPS Hide Login] Logout link problem – Page 404Bonjour,
Pour ma part, votre code, fonctionne parfaitement avec WPS Hide Login tel quel et même en remplaçant ceci :
'href' => "login?action=logout"Par ceci :
'href' => wp_logout_url()Ou même ceci :
'href' => "https://monsite.com/login?action=logout"Êtes-vous sûr qu’aucune redirection n’est configurée empêchant le lien de fonctionner ?
Avez-vous essayé en désactivant tous les plugins excepté WPS Hide Login ?
Avez-vous éventuellement un cache avec l’ancienne URL qu’il faudrait purger ?
Cela dit, la barre d’outils WordPress dispose déjà d’un bouton de déconnexion. Il n’est pas utile d’en rajouter un.Forum: Plugins
In reply to: [WPS Hide Login] Hidden login path being shown to usersYes but it uses the WordPress login system and the same actions.
Then, in some circumstances, PMP can redirect to ‘mylogin?action=logout’ if the login page set in PMP setting is different from “mylogin”.
Forum: Plugins
In reply to: [WPS Hide Login] Hidden login path being shown to usersHello,
Thanks for using WPS Hide Login.
That’s the way the plugin works. It replaces “wp-login.php” slug by your secret slug. It includes the actions like “logout” or “forgot password”.
With Paid Membership Pro, the login page is public. Then, WPS Hide Login is useless.
When you’re logged in, you’re supposed to know th secret slug set in WPS Hide Login. So, it’s not an issue.
Forum: Plugins
In reply to: [WPS Hide Login] Custom Login Link Not Working? (404)Then, activate the plugin and regenerate your permalinks.
Everything will work again.
Forum: Plugins
In reply to: [WPS Hide Login] Custom Login Link Not Working? (404)Hello,
Thanks for using WPS Hide Login.
Reach your files by FTP with the credential given by your host and rename the plugin folder in wp-content/plugins.
Then, you’ll be able to log in with wp-login.php slug.
Forum: Plugins
In reply to: [WPS Hide Login] Logout link problem – Page 404Avez-vous régénéré vos permaliens au préalable ?
Forum: Plugins
In reply to: [WPS Hide Login] Logout link problem – Page 404Parlons français alors 🙂
Bonjour,
Merci d’utiliser WPS Hide Login.Vous avez deux solutions. Soit vous mettez le lien entier en dur dans votre balise href soit :
<a href='https://monsite.com/login?action=logout'>Log out</a>Soit vous optez pour la fonction PHP de WordPress dédiée à cela qui me paraît plus fiable et qui n’aura pas besoin d’être modifiée si vous changez d’URL de connexion à l’avenir :
<a href='<?php echo wp_logout_url() ?>'>Log out</a>Forum: Plugins
In reply to: [WPS Hide Login] Update to Plugin / Test with WP 6.4.Thanks.
It will be modified when moderators will accept it.
Forum: Plugins
In reply to: [WPS Hide Login] Renaming Login url showing 404 error on sub domainOk.
Did you refresh permalinks and try again ?
Is a single WordPress install or a multisite ?