How can I put a Call to Telephone button in PHP wordpress?

Viewed 110

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

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

use

<a href="tel:+1-415-659-6900">(415) 659 6900</a>

You can use anchor tag to create a clickable phone number as below

<a href="tel:+923000000000" target="_blank">Call For Price</a>
Related