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
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
That did it, Thanks!