Removing the Quantity Feature.

Hello, can I remove the quantty box feature on the product page with out breaking the connection in Ali Express? I've noticed on the products containing the ships from option - the quantity box is not there. I would prefer to be consistency through out the site. Anyone have removed this feature without issue?
 

Attachments

  • Screen Shot 2019-07-02 at 11.22.30 AM.png
    Screen Shot 2019-07-02 at 11.22.30 AM.png
    418.5 KB · Views: 10
  • Screen Shot 2019-07-02 at 11.10.06 AM.png
    Screen Shot 2019-07-02 at 11.10.06 AM.png
    402.8 KB · Views: 10

Mar

Moderator
Hello, can I remove the quantty box feature on the product page with out breaking the connection in Ali Express? I've noticed on the products containing the ships from option - the quantity box is not there. I would prefer to be consistency through out the site. Anyone have removed this feature without issue?
If you are using Flatsome theme, add the CSS codes below. It is the number of items to add to cart, it has no connection issue.

.mfp-content .product-lightbox-inner .quantity .plus, #wrapper .quantity .plus {
display: none;
}

.quantity input[type=number] {
display: none;
}

.mfp-content .product-lightbox-inner .quantity .minus, #wrapper .quantity .minus {
display: none;
}

1562088136532.png
 
Top