Tagged: Cart, column, qty, woocommerce
1) On the cart summary page how can I move the X button so it is in the centre of the column?
http://screencast.com/t/dGztoRfwz
2) On a mobile view, the bottom right border is missing and the quantity buttons are missing therefore the user doesnt know how many are in their cart and cant modify the quantities …
Hi richardelectrix!
1. How do we add a product? I’ve been looking through your products and do not see any add to cart buttons.
2. It’s most likely from all of the custom CSS your adding. You will need to hire a freelancer to help you out or contact Woocommerce support.
Regards,
Elliott
1) You add products to the cart by going to a product page eg. http://dev2.electrixinternational.com/product/flat-lid-trunking-length/, select the desired qty and select ‘Add to basket’. This adds the products to the ‘cart’.
2) I have disabled all of my custom css and the qty still isnt visible on a mobile.
Hey!
1. Add this to your custom CSS.
.product-remove {
position: relative;
}
.product-remove a {
left: 50% !important;
transform: translateX(-50%);
position: absolute;
}
2. Add this to your custom CSS.
@media only screen and (max-width: 767px)
.responsive .shop_table .product-quantity {
display: block !important;
}
Best regards,
Elliott
Perfect thanks