'How can I put a Call to Telephone button in PHP wordpress? [closed]

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



Solution 1:[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

Solution 2:[2]

use

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

Solution 3:[3]

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

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

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 JustCarty
Solution 2 Majid Hajibaba
Solution 3