So I don't know what happened now!
Now you need to edit the file includes/templates/YOUR_TEMPLATE/templates/tpl_contest_default.php to do some more testing.
At around line 18 find
PHP Code:
$show_invite = false;
Now insert this right above it so it looks like this.
PHP Code:
// testing use only
if ($error == false) {
echo 'ERROR FALSE<br />';
} else {
echo 'ERROR TRUE<br />';
// should not be set to true here reset to false
$error = false;
}
$show_invite = false;
Next find around line 82
PHP Code:
// echo $entry_email_address.'<br/>'.$entry_name.'<br/>'.$entry_valid;
And just remove the two(2) // so it looks like this
PHP Code:
echo $entry_email_address.'<br/>'.$entry_name.'<br/>'.$entry_valid;
Now when you run the contest you will see this information.
Displayed on your screen.
What is there ?
Skip