Overview
To hide the tooltips on mobile devices, please follow these steps:
- From Shopify's admin, select Online Store.
- Select Actions.
- Select Edit code.
- Under "Templates", select the product.liquid template.
Note: If your theme contains sections, you will need to select product-template.liquid under "Sections" instead.
- Add this code to the bottom of the file:
<style> @media (max-width: 768px) { .shappify_option_name_additional_info { display: none; !important } }</style>
- Select Save.