[Answered ]-How to make a form field not part of the submitted form

1👍

Just add this to your javascript in template:

// jQuery
$('#my_extra_form_field').removeAttr('name');

// Javascript
document.getElementById('my_extra_form_field').removeAttribute('name');

Leave a comment