skip to Main Content

I have used this button for the call for price button but it’s not working well in Google Chrome.

<form action="tel:+923000000000"><button type="submit">Call For Price</button></form>

I am using this code in the short description field.
Please help me to resolve this issue.
Thanks.

Screenshot for this button
Screenshot for this button

3

Answers


  1. You can add a link with the prefix tel:

    <a href="tel:12346">Call For Price</a>
    

    Then you can design the link using CSS, to make it look like a button.

    Read more

    Login or Signup to reply.
  2. use

    <a href="tel:+1-415-659-6900">(415) 659 6900</a>
    
    Login or Signup to reply.
  3. You can use anchor tag to create a clickable phone number as below

    <a href="tel:+923000000000" target="_blank">Call For Price</a>
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search