Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #780919

    Hello,

    We are using woocommerce’s one page check out and it works great on a desktop but on a mobile device it will show the product table but no “Add to Order” buttons.

    Thanks

    #781754

    Hey adventuregear,
    Try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive .shop_table .product-quantity {
        display: block !important; 
    }
    .add_to_cart_button  {
        min-width: 50px!important; 
    }}

    woocommerce had the button set to display:none at mobile screen size. I also added the button re-size for the smaller screen :)

    Best regards,
    Mike

    #782591

    That did it, Thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Woocommerce one page check out "add to cart" not showing up on mobile’ is closed to new replies.