Click-to-Call links or buttons

As the name suggests, a click-to-call link refers to a link that when used on a smartphone automatically prompts a phone call. This will make it easier for your customers to connect with you. 

Table of contents:

Adding a Click-to-Call link
Adding a Click-to-Call button

 

Adding a Click-to-Call link

To create a call-able link you can add the below code snippet into a Raw HTML/JS block on any of your web pages (Home, About, Contact, etc...). The tutorial in this link will walk you through the process of adding the code-snippet to a Raw HTML/JS block.

<a href="tel:+6112345678">CLICK TO CALL</a>

Depending on whether you would like to add the country code or not, you can make the following changes to the code snippet.

Without country code:

If your landline number was (02) 2222 2222 you change the code snippet to:

<a href="tel:0222222222">CLICK TO CALL</a>


Including Country Code:

If you want to include your country code for +61 (02) 2222 2222 drop the leading zero:

<a href="tel:+61222222222">CLICK TO CALL</a>

 

The text on the link can also be changed, by replacing CLICK TO CALL with something else e.g CALL US TODAY.

<a href="tel:+6112345678">CALL US TODAY</a>

 

Adding a Click-to-Call button

A call-able button can be created using the code snippet below and adding it into a Raw HTML/JS block on any of your web pages (Home, About, Contact, etc...). The tutorial in this link will walk you through the process of adding the code-snippet to a Raw HTML/JS block.

 <a class="btn btn-primary " href="tel:+6112345678">Call us today!</a>

Depending on whether you would like to add the country code or not, you can make the following amendments to the code snippet.

Without country code:

If your landline number was (02) 2222 2222 you change the code snippet to:

 <a class="btn btn-primary " href="tel:0222222222">Call us today!</a>


Including Country Code:

If you want to include your country code for +61 (02) 2222 2222 drop the leading zero of the area code:

 <a class="btn btn-primary " href="tel:+61222222222">Call us today!</a>

 

To change the text on the button, simply replace Call us today! with something else e.g. Call Now!

 <a class="btn btn-primary " href="tel:+61222222222">Call Now!</a>

 

0 Comments

Article is closed for comments.