Official comment
Our QA developer Anthony Baldwin developed this code to do so. Note that we cannot train you on how to use Javascript, but your developer will know how this works:
<script type="text/javascript">
var count = $('input[name*="email"]').length;
var current = 0;
var contactfirst = "[pilotpress_field name='First Name']";
var contactlast = "[pilotpress_field name='Last Name']";
var contactemail = "[pilotpress_field name='Email']";
while (current<count) {
document.getElementsByName('firstname')[current].value = contactfirst;
document.getElementsByName('lastname')[current].value = contactlast;
document.getElementsByName('email')[current].value = contactemail;
current++;
}
</script>
Comment actions