permitting a + sign in the phone field in the contact page

Hello,

So I just developed a contact page and I noticed under the phone field only numbers can be entered. I need also for the ‘+’ sign to be accepted as an entry to the field, could someone support?

Preview Link: https://rsofdh7tau5pw7xu-60642623567.shopifypreview.com

Click on contact at the header to enter the page if needed.

Hi @Omarcajo

Please go to your store admin > Sale channels > Online Store > Themes > click “…” > Edit code > open contact-form.liquid file, find this line of code

pattern="[0-9\-]*"

Replace it with this code

pattern="[0-9\-\+]*"

Save your file and check again.

Hi Dan, this worked, thank you so much for your quick response.

You are very welcome!