add custom radio buttons to shopify contact form with html

Solutions on MaxInterview for add custom radio buttons to shopify contact form with html by the best coders in the world

showing results for - "add custom radio buttons to shopify contact form with html"
Rafael
31 Jun 2018
1<!-- 
2 	Add the below code to your page.contact.liquid file 
3
4	Note: dont forget to repalce the "dummy text" (coffee, tea, etc...) with your own value!
5-->
6
7<label>Do you prefer tea or coffee?</label><br />
8<input
9  type="radio"
10  id="ContactFormTea"
11  name="contact[Tea or Coffee]"
12  value="Tea"
13/>
14Tea<br />
15<input
16  type="radio"
17  id="contactFormCoffee"
18  name="contact[Tea or Coffee]"
19  value="Coffee"
20/>
21Coffee
22
23<!-- 
24	Bonus: This is where you will find all the info that you need (link below):
25	https://shopify.dev/tutorials/customize-theme-add-fields-to-your-contact-form#customize-your-form-fields
26-->
27<!-- Happy coding, my homies <3 -->