Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,000
- How-to & Troubleshooting
- 129,414
- Creating & Extending
- 25,786
- Requests & Feedback
- 9,486
- Third Party Plugins
- 9,786
- Showcase
- 3,318
- Ideas
- 1,393
- Miscellaneous
- 9,169
-
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
See also: WordPress.org • bbPress.org • BuddyPress.org • Matt • Blog RSS