How do I remove the phone number option on the contact form?

Solved

How do I remove the phone number option on the contact form?

jaelahstanley
Tourist
34 0 3

I dont want people to put their phone number in when they contact us only their email, name, and comment.

Accepted Solution (1)

LizHoang
Shopify Partner
1251 159 196

This is an accepted solution.

Hi @jaelahstanley 

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file component-newsletter.css and add this code at the end of the file

 

.field:nth-child(4) {
    display: none !important;
}

 

Result: 

LizHoang_0-1739501345222.png

 

Best,

Liz

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Check our Joy Rewards & Loyalty Program

View solution in original post

Replies 3 (3)

B2Bridge
Excursionist
334 67 82

Hi @jaelahstanley, to do that, please follow our instructions:

Step 1: Open Online Store -> Themes -> Edit code.

Step 2: Find base.css file.

Step 3: Paste this code at the bottom of the file

#ContactForm-phone {
 display: none !important;
}

If this helpful, please let us know by giving us a like and marking its as a solution. Thanks you 😍 

B2Bridge: All-in-one B2B wholesale solution, enabling merchants to set up a complete B2B store quickly and without coding.
With features like customizable registration forms, customer segmentation, and tailored price lists, it simplifies wholesale management.
B2Bridge also includes a dedicated Quick Order page and flexible Net Payment Terms, streamlining operations for wholesalers and enhancing the buying experience.

LizHoang
Shopify Partner
1251 159 196

This is an accepted solution.

Hi @jaelahstanley 

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file component-newsletter.css and add this code at the end of the file

 

.field:nth-child(4) {
    display: none !important;
}

 

Result: 

LizHoang_0-1739501345222.png

 

Best,

Liz

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Check our Joy Rewards & Loyalty Program
jaelahstanley
Tourist
34 0 3

Thank you!