Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How can I keep the default WP user registration screen?


Joe
Participant

@themeanwhile

I think I may have found a solution. I edited wp-login on line 437:

if ( is_multisite() ) {
// Multisite uses wp-signup.php
wp_redirect( apply_filters( ‘wp_signup_location’, get_bloginfo(‘wpurl’) . ‘/wp-signup.php’ ) );
exit;

I just commented out those lines so that there is no redirect, and it seems to be working. My one concern is that I am not using wp-signup, like WP 3.0 Multisite registration is intended to do. Will there be any issues down the road with users being improperly registered or anything like that? What is the real difference between “wp-signup.php” and “wp-login.php?action=register” anyway?

Thanks!

Skip to toolbar