Matt Biscay
Forum Replies Created
-
Forum: Plugins
In reply to: [Sky Login Redirect] Problème d'incompatibilitéVous pouvez m’envoyer un compte admin temporaire ici:
https://www.skyminds.net/contact/Je vais jeter un oeil à votre plugin.
Forum: Plugins
In reply to: [Sky Login Redirect] Problème d'incompatibilitéAh, je crois que je comprends d’où vient le problème : Sky Login Redirect vérifie que nous sommes sur une page de connexion WP, or votre shortcode se trouve sur une page.
Essayez-ceci :
– activez les deux plugins
– retirez les morceaux de code précédemment ajoutés
– éditez mon plugin à la ligne 23 et remplacez :
if( sky_is_login_page() ){par:
if( sky_is_login_page() || in_array( $GLOBALS['pagename'], array( 'connexion' ) ) ) }‘connexion’ doit normalement être le slug de la page sur laquelle le shortcode est présent.
Forum: Plugins
In reply to: [Sky Login Redirect] Problème d'incompatibilitéBonjour,
Il m’est difficile d’évaluer là où l’autre plugin bloque, étant donné que ce n’est pas mon code et que je possède pas ce plugin.
Avez-vous un message d’erreur ? Est-ce que les 2 plugins sont bien activés ? Avez-vous retiré le bout de code qu’ils vous ont donné avant de mettre le mien ?
Forum: Plugins
In reply to: [Sky Login Redirect] Undefined indexHello nina,
Thanks for the heads-up, I’ve just pushed the fix in the new release (v1.9).
Forum: Plugins
In reply to: [Sky Login Redirect] Problème d'incompatibilitéBonjour,
Essayez d’ajouter ceci dans le fichier
functions.phpde votre thème :add_filter('wpuf_login_redirect', 'sky_login_redirect');Forum: Fixing WordPress
In reply to: Adding post tags: "undefined" between each character in the tag nameFirefox seems to be impacted, unlike Chrome/Chromium.
Forum: Fixing WordPress
In reply to: Adding post tags: "undefined" between each character in the tag nameSame issue here.
Forum: Plugins
In reply to: [Sky Login Redirect] Custom Login Page compatibilityHi,
What’s the code of your login page ?
Forum: Plugins
In reply to: [Sky Login Redirect] Not work for me with the last edition of WordPressCheers 🙂
Forum: Plugins
In reply to: [Sky Login Redirect] Not work for me with the last edition of WordPressAdd index.php to the link in your button : https://www.example.com/wp-admin/index.php
The user is then redirected as expected on the dashboard.
Forum: Plugins
In reply to: [Sky Login Redirect] Not work for me with the last edition of WordPressHi,
Do you want all users to be redirected to the Dashboard ?
Forum: Plugins
In reply to: [Sky Login Redirect] Not work for me with the last edition of WordPressIf you want the user to be redirected to the dashboard, link to /wp-admin.
It would actually be interesting for you to use the native wp_loginout() function in your theme : https://codex.wordpress.org/Function_Reference/wp_loginout
Forum: Plugins
In reply to: [Sky Login Redirect] Not work for me with the last edition of WordPressThank you.
The current link points to your /wp-admin directory.
You need to put a link to wp-login.php in your sidebar or in your pages/posts.
When a user click on the link, he’s directed to the login page. Once identified, he is redirected to the page he was reading prior to identification.
Forum: Plugins
In reply to: [Sky Login Redirect] Not work for me with the last edition of WordPressYou can send it here : https://www.skyminds.net/contact/
Forum: Plugins
In reply to: [Sky Login Redirect] Not work for me with the last edition of WordPressHi,
Can you please provide :
– an URL I can test
– the list of other plugins you are using.Thanks