Hi,
This is in CLEAN, but I'll post it here also for everyone.
The default looking age of 18-18 is totally crazy... people sign up - and often, don't change this - screwing up the searches, and the admin then needs to adjust it in the admin profile edit.
The code below, takes care of this. You dont need to set LookingAge2
Add this to join_form.php, under $page = $_POST[page];
Code:
// Set this value to what ever age you want, minus 18. 18-93 will result in a looking age of 18-75 on the join form
if ( !$_POST['LookingAge1'] )
{
$_POST['LookingAge1'] = 18-93;
$p_arr['LookingAge1'] = 18-93;
}
Smoge
Bookmarks