Viewing 1 replies (of 1 total)
  • Hello

    I’m not sure, but I think the cart button might be coming from you theme, not from WooCommerce.

    To make it go away, you could make a child theme if you aren’t already using one. In your child theme style.css file, you could add something like this:

    @media screen and (max-width:415px) {
      body.home ul.cart_dropdown {
        display: none;
      }
    }

    Note: The 2nd line of code is specific to the theme you’re currently using.

    I didn’t test it, but I think it will work. That should hide the cart button on any screen less than 415px wide.

    PS – You may be able keep the cart button and prevent it from overlapping the logo by using some more elegant CSS.

Viewing 1 replies (of 1 total)
  • The topic ‘Remove Cart from mobile’ is closed to new replies.