Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 23,830
- How-to & Troubleshooting
- 129,810
- Creating & Extending
- 25,867
- Requests & Feedback
- 9,509
- Third Party Plugins
- 9,821
- Showcase
- 3,317
- Ideas
- 1,383
- Miscellaneous
- 9,177
-
hi,yes, you can.
Put this code in your current themes functions.php and it will make it work.
add_filter("site_url","my_custom_register_url",10,3);
function my_custom_register_url($url, $path, $orig_scheme)
{
if($orig_scheme=
"login")
{
if($path=
"wp-login.php?action=register")
return get_option('siteurl')."/register";
}
return $url;
}
Let me know it worked for you or not