Could you please inform me how to disable tooltips on mobile (primarily phones). I have a button that is set to prompt either SMS: OR TEL: and am using a tooltip on desktop to notify the user of the number but I’d rather bypass the tooltip on mobile/phones and enable the action (SMS: or TEL) to take place without having to click on the tooltip..make sense?
Thanks for writing in! SMS and TEL link is working for mobile fine. If you need to remove the tooltip; you can add this under Custom > CSS in the Customizer.
@media only screen and (max-width: 979px) {
.tooltip {
display: none!important;
}
}