Matt Biscay
Forum Replies Created
-
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.www.ads-software.com/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
Forum: Plugins
In reply to: [Sky Login Redirect] Not work for me with the last edition of WordPressHi,
Which version of WordPress are you using ?
Forum: Plugins
In reply to: [Sky Login Redirect] wp-admin redirects after uninstallHi,
Have you updated events Calendar recently ?
I had a look of the Events Calendar support page : it seems to have a lot of issues in its last version. I also notice that they touch permalinks, you might want to raise the issue with their plugin authors.
Meanwhile, you could try to :
– check the .htaccess at the root for leftover code
– check the .htaccess in the /wp-admin/ folder
– reset permalinks in Settings > PermalinksThanks,
Matt
Forum: Plugins
In reply to: [Sky Login Redirect] wp-admin redirects after uninstallHi,
The plugin does not write to the .htaccess file : if you delete it, it will bring your blog back to vanilla behaviour. There are no permanent redirects, just filters used when the plugin is active.
Try to deactivate the plugin, delete it and clear your cache (cache plugin and browser).
The plugin does not redirect the backend to the frontend – could you please provide the list of plugins you are using?
Thanks,
Matt
Forum: Plugins
In reply to: [Sky Login Redirect] How to Logout url redirect to previous or referrer pageHi,
Redirecting the user to the homepage when they log out is by design : if the referring page is protected or belongs to the backend, the user would be redirected to the login page, which IMO defeats the purpose. It makes more sense to redirect them to the homepage.
Forum: Reviews
In reply to: [Sky Login Redirect] Works wellHi,
You’re welcome!
The best way would be to create a functionality plugin (using this plugin for example : https://www.ads-software.com/plugins/functionality/) and put the line of code there so that the change is retained when you upgrade your theme.
Best regards,
Matt
Forum: Reviews
In reply to: [Sky Login Redirect] Works wellHi,
You’ve got the wrong functions.php file : I meant your theme’s functions.php (/wp-content/themes/*name_of_your_theme/functions.php). I wasn’t considering editing a WordPress core file.
remove_action()
is a standard WP function.Forum: Reviews
In reply to: [Sky Login Redirect] Works wellHi again,
To disable SimplePress logout redirect, add this line in your functions.php file :
remove_action('wp_logout', sp_logout_redirect);