Hide the Tooltips on Mobile Devices

Modified on Fri, 1 Sep, 2023 at 3:32 AM

Overview

This article outlines how to hide your option's tooltips from customers using mobile devices.


Setup

  1. From the Shopify admin, select Online Store.
  2. Select Actions.
  3. Select Edit code.
  4. Under Templates, select the product.liquidtemplate.

    Note: If your theme contains sections, you will need to select product-template.liquid under Sections instead.

  5. Add this code to the bottom of the file:
    <style>
    @media (max-width: 768px) {
    .shappify_option_name_additional_info {
    display: none; !important
    }
    }</style>

    Add the code to the bottom of the file

  6. Select Save.

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article