kilometrics
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Hide & Security Enhancer] Problem Uploading the WP Hide PRO PluginHi, I wanted to update and close this post. Turns out the problem was I still had the regular WP Hide Plugin Activated. Once I Deactivated, I was able to successfully activate the PRO version. Thanks!
Ok, I’ll check the server. Thanks 🙂 @bluebearmedia
–Updated–
Just checked and there was a pending update for the Newsletter plugin. I just updated it and it worked. Thank you
Forum: Plugins
In reply to: [Force Login] Page not working because of too many redirectsI now got the plugin to work with my theme (by disabling the popup window) but when I log in, it takes me automatically to the home page and I would like it to continue to take me to the original page I was looking for.
Is this something I need to change in functions.php or in the plugin editor? I’m not sure what to do now.
Any help is appreciated!
Forum: Plugins
In reply to: [Force Login] Page not working because of too many redirectsHello Kevin,
In case this happens to someone else, I got it to work by removing the login pop up form which apparently is what was conflicting with the plugin.To disable the login popup go to functions.php and find and remove:
if ( ! function_exists( ‘gp_login_redirect’ ) ) {
function gp_login_redirect() {
global $pagenow;
if ( ‘wp-login.php’ == $pagenow && ( get_site_option( ‘gp_sitewide_login_link’ ) == ‘yes’ OR !is_multisite() ) ) {
if ( isset( $_POST[‘wp-submit’] ) OR ( isset( $_GET[‘checkemail’] ) && $_GET[‘checkemail’] != ” ) OR ( isset( $_GET[‘action’] ) && $_GET[‘action’] != ” ) OR isset( $_GET[‘reauth’] ) && $_GET[‘reauth’] == ‘1’ ) {
return;
} else {
wp_redirect( esc_url( home_url( ‘#login/’ ) ) );
}
exit();
}
}
}
add_action(‘init’, ‘gp_login_redirect’);Forum: Plugins
In reply to: [Force Login] Page not working because of too many redirectsThank you for the link. I just found out that it’s not the plugins. It’s the theme that’s conflicting. When I tried using the Twenty Fourteen theme, it worked.