Have your say in Community Polls: What was/is your greatest motivation to start your own business?

How can I edit contact form fields in the Sense theme?

How can I edit contact form fields in the Sense theme?

TopRock
Excursionist
14 0 3

Hi,

 

I would like to change and edit some fields in the contact form but not being able to find anywhere that option, if available or possible.

 

Could you please help or guide through?

 

web: toprocksports.com

 

Thanks!

Reply 1 (1)

Hamza_Hussain
Shopify Partner
56 6 13

There might not be any options to change the fields in contact form but you can change it using Shopify Theme Editor you can also add and even edit any field in Shopify. Here is Shopify Documentation about Contact Form Fields, 

here is an example code 

 

  <div class="order-number">
    <label for="order-number">Order number</label>
<-- one thing note here that any field you add in contact form must have name attribute and should be like this name="contact[any name you want]" !-->
    <input type="text" name="contact[order_number]" id="order-number" />
  </div>
Honey G Hamza