I have a long form with a bunch of fields that are not required. I want these fields to appear in the application email with an "N/A" value if the user has not filled in these fields. Is this possible?
Thanks
I have a long form with a bunch of fields that are not required. I want these fields to appear in the application email with an "N/A" value if the user has not filled in these fields. Is this possible?
Thanks
There currently isn't an option for this. You can change Job Manager to do this, but you will have to re-apply this fix with each upgrade.
In frontend-application.php, on line 923, change:
continue;
to:
{
$msg .= $field['label'] . ': N/A' . PHP_EOL;
continue;
}This topic has been closed to new replies.