• Resolved shawn007

    (@shawn007)


    Hello Team,

    I am using the plugin on one of my e-commerce websites. I have used the IP Address + Cookie Based Login option which gave me a unique id. I have also redirected my Admin page to CIA.GOV just to scare the Hackers.

    But, this is a WooCommerce Website and it is blocking my customers also as they are not able to log in. They are being redirected to CIA.GOV

    Is there a way to resolve this or is there an option where I can keep my group of Customers away from getting blocked?

Viewing 1 replies (of 1 total)
  • Plugin Support vupdraft

    (@vupdraft)

    There is no way to do this with the plugin directly, however you could do it with a filter;

    add_filter( ‘login_url’, ‘my_login_page’, 10, 2 );
    function my_login_page( $login_url, $redirect ) {
    return home_url( ‘/login-page/?redirect_to=’ . $redirect );
    }

    Please see here for more information: https://wpjobmanager.com/document/changing-login-redirects/

    The other alternative is to use a redirection plugin

Viewing 1 replies (of 1 total)
  • The topic ‘Blocking my WooCommerce Customers’ is closed to new replies.