Howw to hide quantity chooser

On my product page Rackgrip™ Pro

how i hide original Quantity chooser?

Thanks in Advance! :slight_smile:

Hello @Kotipojat

Here are the steps to apply the necessary changes in your Shopify store:

  1. In your Shopify Admin, navigate to Online Store > Themes > Actions > Edit Code.

  2. Locate Asset > base.css and paste the following code at the bottom of the file:

.rg-product__quantity {
    display: none !important;
}

Result:

Let me know if you need further assistance!

Hey @Kotipojat

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above </ body> tag
<style>
.rg-product__quantity {
    display: none !important;
}
</style>

RESULT:

If I managed to help you then a Like would be truly appreciated.

Best,
Moeed

1 Like

Thank you, this one fixed it! :slight_smile:

1 Like

Thank you for your reply. I’m glad to hear that the solution worked well for you. If you require any more help, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.

1 Like