How can I remove the quantity field from my product page?

Hello, I would like to remove the qty field from the product page:

my website is https://imabyssal.com/products/calypso-necklace can anyone help me?

1 Like

Hi @imabyssal ,

Please follow the instructions below.

  1. From your Admin Page, click Online Store > Themes >Actions > Edit code
  2. In the Asset folder, open the theme.css
  3. Paste the code below at the very bottom of the file.
.product-options.product-options-default-only {
    display: none;
}

Hi! It didnt work :disappointed_face:

1 Like

Can you replace the code with the code below?

.product-options {
    display: none !important;
}

Unless you haven’t updated in some time Grid should be an OS2.0 theme.

If your theme is OS2.0 compatible double check the theme settings for the product page template to be sure there isn’t a a quantity block you can disable or remove.

@imabyssal

can you try this

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
.product-options.product-options-default-only {
    display: none !important;
}