remove that and place here.
Find
PHP Code:
// Country Hack
$country = trim($country);
// Country Hack End
and place this after it
PHP Code:
if($country==""){
eval("standarderror('Please select your country.');");
exit;
}
so it should like this when finished
PHP Code:
// Country Hack
$country = trim($country);
if($country==""){
eval("standarderror('Please select your country.');");
exit;
}
// Country Hack End