Hey there,
I have created a form and everything seems to be working just fine, you get added to our email subscription, we get an email from the form submission. however if you chose more than one "application" the form doesn't work, you don't get a successful submission alert, no subscription, and no email to us.
I have tried searching the forum and have tried taking
`$application = isset($application) ? "Applications: $application
" : '';`
and making it this
$application = isset($application) ? "application: $application
" : '';
if( is_array( $application ) && !empty( $application ) ) {
$application = "application: " . implode( ', ', $application ) . "
" : '';
}and it still wont work. what am i missing.
