Re-order the "Your email address" field | Community
Skip to main content

Re-order the "Your email address" field

  • April 5, 2022
  • 1 reply
  • 0 views

Zafar

Hi,

Is it possible to re-order the "Your email address" field in the Contact Us form?  We want to push it lower on the new request page.

1 reply

Zendesk13
  • April 5, 2022

Hi @zafar, it is possible, and you'll have to edit the "new_request_page.hbs" file. For example, let's say we want to place the email field before custom field 360023185291. In that case, we'll add a script like the following:

<script>
var mail = $(".form-field.request_anonymous_requester_email");
var date = $(".form-field.request_custom_fields_360023185291");
$(mail).prependTo(date);
</script>

Hope this helps!