Home Forums Basel support forum color change in mobile Reply To: color change in mobile

#168475

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