Dear Laura Pierobon,
Please go to Template Manager, choose Default Menu Style field is Mega menu in Top Menu Settings tab.
Then, please go to yoursite/templates/sj_restaurant25/html/mod_yt_contact/default.php and find:
function ytc_isValidEmail(email_str) {
var emailPattern = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/;
if (emailPattern.test(email_str)) {
alert('<?php echo $thankyou; ?>);
$currentForm.submit();
} else {
alert('<?php echo $emailerror; ?>');
}
}
=>
function ytc_isValidEmail(email_str) {
var emailPattern = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/;
if (emailPattern.test(email_str)) {
alert("<?php echo $thankyou; ?>");
$currentForm.submit();
} else {
alert("<?php echo $emailerror; ?>");
}
}
Because in your language, $emailerror=L'indirizzo email inserito non è valido, ti preghiamo di verificarlo
=>
alert('L'indirizzo email inserito non è valido, ti preghiamo di verificarlo '); will occur structure js error.
I fixed that, please go to your site to check again.
Thanks