Hie there...
I have been searching this from from 2 days but didn't got any ans which could help me:(
I want to hack the normal registration process, and make it only 1 step, rather than normal 2 step process....
I'm trying to implement registration box in the sidebar, so user gets the option:
Blog Domain:
Username:
Blog Title:
Email:
Verification:
And after that when the user enter the details he gets the greetings on the sidebar only, weather registration successful or Failed.
I want to implement something like http://bicyclejournals.net/
But i think they have customized the wp-signup.php, to make only single page...
I even tried to use the wp-signup.php ported along with WPMU Captcha for registration, but that too has 2 step normal registration:(
So i will really appriciate if anyone plz tell me the code i need for wp-signup.php , and the other changes i require for getting this done....
I'm not a PHP coder, just know basics, & how to hack basic stuffs...
Here is the registration form of bicyclejournals.net
<form name="setupform" id="setupform" method="post" action="wp-signup.php">
<input type="hidden" name="stage" value="1">
<table border="0" width="100%" cellpadding="2">
<tr>
<th valign="top" nowrap style="text-align:right;">Blog Domain:</th>
<td style="text-align:left;">
<input style="font-size:10px; font-family:Verdana,Arial;" name="blog_id" type="text" id="blog_id" value="" maxlength="50" style="text-align: right; font-size: 10px;" />
<span style="font-size: 10px">(bicyclejournals.net)</span>
</td>
</tr>
<tr>
<th valign="top" nowrap style="text-align:right;">Blog Title:</th>
<td style="text-align:left;"><input style="font-size:10px; font-family:Verdana,Arial;" name="blog_title" type="text" id="blog_title" value="" /></td>
</tr>
<tr>
<th valign="top" nowrap style="text-align:right;">Email Address:</th>
<td style="text-align:left;"><input style="font-size:10px; font-family:Verdana,Arial;" name="user_email" type="text" id="user_email" value="" maxlength="200" /></td>
</tr>
<tr>
<th valign="top" nowrap style="text-align:right;">Verification:</th>
<td style="text-align:left;">
<img src="5digits.php">
If you don't see 5 digits, refresh this page.
<input type="text" name="code_check" size="6" maxlength="5" />
</td>
</tr>
<tr>
<th scope="row" valign="top"> </th>
<td style="text-align:left;"><input style="font-size:10px; font-family:Verdana,Arial;" id="submit" type="submit" name="Submit" class="submit" value="Sign Up »" /></td>
</tr>
Regards.
vib.