Sellerdeck uses a 'Phone' variable in a number of layouts (<actinic:variable name="Phone" />)
The value for this variable is set in Business Settings Company Details.
It is usual to enter phone numbers here as:
01234 987654 or 0800 123 987654
The Phone variable is used to yield the telephone number for one click calling in mobile view (or Skype in desktop if the user has this set up)
This will yield using the example above:
This won't work. The a href='tel' needs to be the international form of the number without breaks (+441234987654)
To resolve this search the design library for <actinic:variable name="Phone" /> and where it is in the hyperlink change it for the international number appropriate for your site.
It would be nice it SD brought in a variable for this so it can be entered in Company details.
The value for this variable is set in Business Settings Company Details.
It is usual to enter phone numbers here as:
01234 987654 or 0800 123 987654
The Phone variable is used to yield the telephone number for one click calling in mobile view (or Skype in desktop if the user has this set up)
Code:
<a href="tel:<actinic:variable name="Phone" />" rel="nofollow"><actinic:variable name="Phone" /></a>
Code:
<a href="tel:01234 987654>" rel="nofollow">01234 987654</a>
To resolve this search the design library for <actinic:variable name="Phone" /> and where it is in the hyperlink change it for the international number appropriate for your site.
Code:
<a href="tel:+441234987654" rel="nofollow"><actinic:variable name="Phone" /></a>
Comment