Okay
  Public Ticket #1290448
Hide product share options on mobile
Closed

Comments

  •  2
    Kwells1979 started the conversation

    I wish to hide the product sharing options from single product view on mobile as they tend not to work correctly.

  • [deleted] replied

    Hi Kwells1979,

    This is a customization question and support doesn't offer customization services as we wrote on our support homepage. I will try to help you this time though

    They should work fine on al screens but if you want to hide them on mobile view you can add this CSS code:

    @media screen and (max-width: 768px) {
        .woocommerce .share-post {
            display: none;
        }
    }