Hello,
I have the contact form working an my site:
http://www.edc-europe.nl/contact/
But the contact form has no thank you Ajax effect after sending.
I can not seem to figure out what happened, it worked a week ago and my client calls me out of the blue about this.
Do you have any idea what might be the cause?
My form on the contact page: (all works, but no thank you effect/message)
<form action="" method="post" class="ajax_form">
<fieldset><?php if (!isset($error) || $error == true){ ?><h3><span><?php _e('Neem contact op met EDC', 'wpml_theme') ?></span></h3>
<p class="<?php if (isset($the_companynameclass)) echo $the_companynameclass; ?>" ><input name="company" class="text_input empty" type="text" id="companyname" size="20" value='<?php if (isset($the_companyname)) echo $the_companyname?>'/><label for="companyname"><?php _e('Bedrijfsnaam', 'wpml_theme') ?></label>
</p>
<p><input name="website" class="text_input" type="text" id="website" size="20" value="<?php if (isset($the_website)) echo $the_website?>"/><label for="website"><?php _e('Website', 'wpml_theme') ?></label></p>
<p class="<?php if (isset($the_nameclass)) echo $the_nameclass; ?>" ><input name="yourname" class="text_input empty" type="text" id="name" size="20" value='<?php if (isset($the_name)) echo $the_name?>'/><label for="name"><?php _e('Contactpersoon', 'wpml_theme') ?>*</label>
</p>
<p class="<?php if (isset($the_telclass)) echo $the_telclass; ?>" ><input name="tel" class="text_input empty" type="text" id="tel" size="20" value='<?php if (isset($the_tel)) echo $the_tel?>'/><label for="tel"><?php _e('Telefoon', 'wpml_theme') ?></label>
</p>
<p class="<?php if (isset($the_emailclass)) echo $the_emailclass; ?>" ><input name="email" class="text_input email" type="text" id="email" size="20" value='<?php if (isset($the_email)) echo $the_email ?>' /><label for="email"><?php _e('E-Mail', 'wpml_theme') ?>*</label></p>
<label for="message" class="blocklabel"><?php _e('Uw bericht', 'wpml_theme') ?>*</label>
<p class="<?php if (isset($the_messageclass)) echo $the_messageclass; ?>"><textarea name="message" class="text_area empty" cols="40" rows="7" id="message" ><?php if (isset($the_message)) echo $the_message ?></textarea></p><p>
<input type="hidden" id="myemail" name="myemail" value="<?php echo $email_adress_reciever; ?>" />
<input type="hidden" id="myblogname" name="myblogname" value="<?php echo $name_of_your_site; ?>" />
<input name="Send" type="submit" value="<?php _e('Verstuur', 'wpml_theme') ?>" class="button" id="send" size="16"/></p>
<?php } else { ?>
<p><h3><?php _e('Uw bericht is verstuurd!', 'wpml_theme') ?></h3> <?php _e('Dank u.', 'wpml_theme') ?></p>
<?php } ?>
</fieldset>
</form>














