Is it possible to disable tel tag for desktops? The reason I am asking is because it behaves differently of different OS. Right now I am having issue with one my clients website, this page https://www.plumbwize.ca/plumber-burlington/. On Windows, nothing happens while clicking on the phone number. And on Mac, it opens FaceTime. I don't want the button to open anything while on desktop. It should only function while mobile browsers. Is it possible to implement this?
This is a problem that can be resolved by JavaScript. I suggest putting an id on this element, then get the element by id, then remove the link tag. Condition - screen size larger than for a mobile device.
Did you see this code from a previous sitepoint post: @media screen and (min-width: 768px) { a[href^='tel:'] { display: none; } }