Home › Forums › Basel support forum › color change in mobile › Reply To: color change in mobile
January 17, 2020 at 7:48 am
#168475
Elise Noromit
Member
Hello,
iPhone and iPad interpret some kind of content in their own way. For example, they interpret any numbers as a phone number by default. In order to solve this issue please add this code to the functions.php of the child theme:
add_action(
'wp_head',
function () {
echo '<meta name="format-detection" content="telephone=no">';
}
);
If you need to show a phone nubmer on the site, please apply HTML code: <a href="tel:+788888888888">+7(8888)-888-88-88</a>
Best Regards