Replies: 0
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 = 'http://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