Okay
  Public Ticket #2902555
How to Hide Stock Quantity at Customer View
Closed

Comments

  • Bscreativeco started the conversation

    HI, how do I hide the stock quantity on the customer view for each product? See image attached for reference. It only appears when you select a size then it shows up. I have the product variations setup with manage stock clicked since the quantities are different per size. How can I hide it from popping up on the site for people to see?

  •  595
    WordPress replied

    Hello,

    You can go to Appearance -> Customize -> Shop -> Shop single -> Turn off Avaiability

    5308050373.png


  • Bscreativeco replied

    I unchecked "Availability" but it still shows the quantity when you click on any size. Let me know if it is hidden on your end. Reference link below...Click on a size and the quantity appears still. I cleared my cache as well!

    https://abink.com/product/work-in-progress/


  •  595
    WordPress replied

    Hello,

    You can go to Appearance -> Customize -> Advanced -> Custom Css -> Enter CSS

    .woocommerce-variation-availability {
        display: none;
    }


  • Bscreativeco replied

    That worked!!! Thank you so much!!

  •  595
    WordPress replied

    Hello,

    Can you take some time to rate our item 5 star in ThemeForest?

    https://themeforest.net/item/lusion-multipurpose-ecommerce-wordpress-theme/reviews/27657550


  • brad replied

    Hi folks. I followed the suggestion below for a variable product, which worked great for hiding the stock availability from customers. Can someone give me the word or magic for a single product? I have tried adding the same CSS entry and replacing "variation" with "simple" and "single", but it doesn't seem to work.


    You can go to Appearance -> Customize -> Advanced -> Custom Css -> Enter CSS

    .woocommerce-variation-availability {
        display: none;
    }