• Don’t know why, but when someone checks my site(LOGGED IN OR WITHOUT LOGIN) it doesn’t shows any ADD TO CART button. but when I login through my ADMIN ac, everything goes fine.
    Updating to latest version 2.6.11 gave me no goods.
    please help
    my site url is ladiesown.in

Viewing 2 replies - 1 through 2 (of 2 total)
  • The add-to-cart button is present in the page but hidden by this snippet:

    <style>form.cart button.single_add_to_cart_button,form.cart .quantity{display:none!important}</style>
    

    Its not a WooCommerce snippet so its coming from your theme or plugins. Try deactivating your plugins and switching to the default theme. Put them back one-by-one and test to try to identify which software element is causing this.

    If you can’t find what’s doing it, you may be able to override the style with this custom css:

    body form.cart button.single_add_to_cart_button, form.cart .quantity {
      display: block !important;
    } 
    

    Custom css can be entered at:
    Dashboard > Appearance > Customise > Additional CSS

    Thread Starter chaitanysharan

    (@chaitanysharan)

    found and solved.
    By mistake I activated CATALOG mode. that’s why it was not allowing to display the ADD TO CART BUTTON.
    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add to cart button appears only in ADMIN account’ is closed to new replies.