Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #574360

    I am using woocommerce and when nothing is in the cart you do NOT see the cart until you put something in the basket when viewed on a computer browser.

    However, when I view the site on my iPhone the shopping cart icon is ALWAYS present even when there is NOTHING in the cart. This is a problem because it interferes with the logo of the site when viewed on a phone. I can understand it appearing once an item is added to the cart because that is what is supposed to happen however, this is not the case.

    I need to find out how to prevent this problem.

    Thank you

    #575514

    Am I the only one to have this problem?

    I have only been able to test it on the iPhone with the safari and chrome browser but it appears using BOTH of them (if that helps your troubleshooting.)

    Looking forward to resolving this problem.

    Thank you!

    #575936

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 768px) {
    ul#menu-item-shop[data-success="was added to the cart"] {
        display: block !important;
    }
    ul#menu-item-shop {
        display: none !important;
    }}

    Regards,
    Yigit

    #593061

    I am facing the same issue and unfortunately the CSS code provided does not fix the problem. Any other ideas?

    #593063

    Oops, my bad. It is answered here

    Paste the following in your Quick CSS

    @media only screen and (max-width: 767px) {
        .cart_dropdown{
            display: none !important;
        }
        .html_visible_cart .cart_dropdown{
            display: block !important;
        }
      
    }

    All good! Try it la_tripping and see if it works

    #593630

    Hi @ManoLee,

    Glad you found the answer and thanks for sharing, much appreciated :-)

    Regards,
    Rikard

    #595859

    Thanks for this answer. Saved me some time today.

    #595894

    Hi!

    Great! We will keep the thread open for the OP. If you guys have any other questions or issues, please feel free to start a new thread :)

    Regards,
    Yigit

    #600734

    I am sorry to report that the suggest solution did NOT work for my site. I STILL have the shopping cart on my mobile sites even after the addition of the code:

    @media only screen and (max-width: 767px) {
    .cart_dropdown{
    display: none !important;
    }
    .html_visible_cart .cart_dropdown{
    display: block !important;
    }

    }

    I would appreciate it if someone could check my site as this has gone on too long and the suggest solution has been applied without the needed result.

    Thank you!

    #601081

    Hi,

    Please send us a temporary admin login so that we can have a closer look. You can post the details in the Private Content section of your reply.

    Best regards,
    Rikard

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.