Hi,
Thanks for provide me solution but i tried and its not working please give me some code so i will paste and create login or registration page or any post where i can read and create it.
Thanks
Create a custom page template in your active theme’s directory. copy/paste code from wp-signup.php. Tweak it.
Create a new page “signup”.
Apply the custom page template to it.
Got to site’s Reading->Settings and set the front page to static new “signup” page.
Example: http://pastebin.com/8EfBHA1K
Hi ,
thnaks lot for this code its work but i am facing on problem is
The requested URL /signup/ was not found on this server.
Plz help me how to over come this problme..
thanks a lot for this help.
Thanks
If you get that working you’ll still need to redirect to your new signup_location with a plugin (/plugins/, or /mu-plugins/, or add to your template’s functions.php):
<?php
function ds_my_signup_page() {
$page = 'http://domain.tld/signup/';
return $page;
}
add_filter( 'wp_signup_location', 'ds_my_signup_page' );
if( strpos($_SERVER['REQUEST_URI'], 'wp-signup.php'))
wp_redirect( 'signup/' );
?>
Hi thank you very much it will solved.
thanks