Ticket #3941 (closed defect (bug): fixed)
"Create a new site" link at wp-admin/my-sites.php redirects to network homepage
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | 1.6 |
| Component: | Blogs | Version: | 1.5.3 |
| Severity: | normal | Keywords: | |
| Cc: |
Description
WordPress Network blog creation link points to wp-signup.php.
BuddyPress redirects this link to the network homepage.
Suggested fix/enhancement:
add_filter('wp_signup_location', 'bp_blog_creation_link');
function bp_blog_creation_link($old) {
return get_bloginfo('url').'/blogs/create/';
}
Change History
- Component changed from Core to Blogs
- Milestone changed from Awaiting Review to 1.6
comment:2
boonebgorges — 3 months ago
- Status changed from new to closed
- Resolution set to fixed
Note: See
TracTickets for help on using
tickets.

Wondering if we should revisit the whole redirect from wp-signup.php issue.