Tagged: shopping cart icon
-
AuthorPosts
-
January 29, 2016 at 8:08 am #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
February 1, 2016 at 4:46 am #575514Am 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!
February 1, 2016 at 5:58 pm #575936Hi!
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,
YigitMarch 4, 2016 at 1:30 am #593061I am facing the same issue and unfortunately the CSS code provided does not fix the problem. Any other ideas?
March 4, 2016 at 1:45 am #593063Oops, 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
March 5, 2016 at 5:49 am #593630Hi @ManoLee,
Glad you found the answer and thanks for sharing, much appreciated :-)
Regards,
RikardMarch 9, 2016 at 10:22 pm #595859Thanks for this answer. Saved me some time today.
March 9, 2016 at 11:09 pm #595894Hi!
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,
YigitMarch 19, 2016 at 7:51 pm #600734I 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!
March 21, 2016 at 7:39 am #601081 -
AuthorPosts
- You must be logged in to reply to this topic.