Field quantity in cart does not appear value - Woocommerce

-1

I'm pretty much a beginner in PHP and I'm at the end of the project. But I'm using the Sidney theme with woocommerce, despite the incompatibility alert. In the quantity field, where the buyer increases or decreases the values to add to the cart, the increased value does not appear. I've researched a few things, I thought there would be a faster help here.

Follow the print.

I can not change the theme unfortunately. I thought of hiding this field so that the user clicks buy and with each click, the cart increases one. This works because when I click the buy button, it adds a product and that would be the gambiarra solution for me at the moment. I can not leave a single product per order because the customer has to be able to buy more than one ticket in the order. In other themes I have, the quantity field works fine, only with this theme that I could not.

    
asked by anonymous 16.05.2016 / 16:48

2 answers

0

Just to warn, I got help from a friend and the solution was to hit The CSS file in /wp-content/plugins/woocommerce/assets/css/woocommerce.css

Edit part

. woocommerce .quantity .qty

Resolved

    
17.05.2016 / 01:47
-1

Edit the CSS file in /wp-content/plugins/woocommerce/assets/css/woocommerce.css

Search for:

. woocommerce .quantity .qty

Edit part of size:

{
  width:3,61em;
  text-align:center
}

To:

{
  width:8em;
  text-align:center
}
    
28.04.2017 / 21:31