• Resolved candy2012

    (@candy2012)


    Hi,
    How can I get rid of the Geo login/signup forms which are forcely pushed on the page used for login/registration?

    I tried to use an other page instead of geo Login in settings, but your forms are getting forcefully “glued” in the end of ANY page, no matter the page used!

    I tried to use that redirect thing in functions

    add_filter('geodir_login_url','_my_geodir_login_url',10,3);
    function _my_geodir_login_url($login_url,$args,$gd_page_id){
     if(isset($args['signup'])){
    //change the url to whatever you want.
     $login_url = 'https://myiste.com/wp-login.php?action=register';
     }
    return $login_url;
    }

    but it doesn’t work either! So no change whatsoever!

    I need to add my login & register form, or at least the WordPress ones (yes, I did select the option in settings!)

    So how can I achieve that please ?!?

    Very confusing so far …

    Thx

Viewing 1 replies (of 1 total)
  • Plugin Author Stiofan

    (@stiofansisland)

    Hi @candy2012,

    I see you also posted on UsersWP so i assume you are using that plugin also.
    If so, just go to the GD>Permalinks>Login page: and set it to a non used page for now. Then make sure you are not using that page also for the UWP settings and you should be good.

    The filter above likely did not work as the UWP plugin is already filtering it, if you set the priority later it will likely work.

    If you need any more help or advice with anything just let me know ??

    Thanks,

    Stiofan

Viewing 1 replies (of 1 total)
  • The topic ‘login / signup forms’ is closed to new replies.