How to Hide Tooltips in Product Variation Swatches?

In the latest version (1.7), you can Show / Hide Tooltip from admin settings page.

show-tooltip-swatches

For older version, you can use CSS override below to hide tooltips from the Variation Swatches. More info on CSS override is available in this knowledge base article here.

.spsTooltip {
display: none !important;
}

* If you wish to hide the tooltip on mobile only, you can use CSS override code below:

@media only screen and (max-width: 415px) {
  .spsTooltip {
     display: none !important;
  }
}
4+

Users who have LIKED this post:

  • Sofia Moss