The contactform.php works.
But when I used UE in a form that uses ajax to submit the form, UE fails. Is there to make it work with ajax? On the other hand, UE works fine when I used WA's "Insert A Single Record" behaviour.
This is the function that uses ajax to submit form data (which I think bypassed UE entirely)
$("#fmregister").validate({
submitHandler : function()
{
// the form is valid
var formsubmit=$("#fmregister").serialize();
$.ajax ({
type: "POST",
url: "register_process.php",
data: formsubmit,
success: function(note)
{
$(window.location).attr('href', '#registered');
$("#registered #load").html(note);
}
}); <!-- END $.ajax -->
return false;
}
});
Regarding the UE email, how do I change form field names to something that's more user friendly? I don't want the user to see things like txt_name, txt_emai, etc. Instead, they should see Name:, Email:, and such.
Is there a way to insert the form data into the "Additional Notes" section where the Lorem ipsum texts are found? I want the message to say something like, "Your registration for {name of workshop} is successful", and to include other information submitted by the user as well.
Many thanks for your help so far!