Remove the size from a page

I want to remove the size from the page? I have drawn theme

@coralseasw ,

Go to Online Store → Themes → Customize → Collection template

Look for settings such as

  • Show product options
  • Show color swatches
  • Enable quick add

If you see Show product options simply turn it Off.

I already have the quick add turn it off.

Assuming you meant Dawn theme, updated theme versions do not display size or color options on the product card. So if you’re using an old theme, it would be easier and probably better to update than using custom code to hide it.

@coralseasw ,
Since you are using Dawn and Quick Add is already turned off those S / M / L buttons are not coming from Quick Add.
They are likely coming from a variant picker that has been added to the product card.
Snippets → card-product.liquid

render ‘product-variant-picker’

If you find something like

{% render 'card-product-variant-picker', product: card_product %}

or

{% render 'product-variant-picker', product: card_product %}

delete it or comment it out

{% comment %}
{% render 'card-product-variant-picker', product: card_product %}
{% endcomment %}

Default does not have this feature, so this should come from customized code. Could you share the link to your store so I can provide the code to hide them?


Best regards, Dan from Ryviu: Reviews & Loyalty

You can add this code to Custom CSS in Theme settings to remove it

.swatches-globo--list { display: none !important; }

However, it seem it come from Globo app so you may can disable it from Globo app dashboard.

Thank you!! That works :slight_smile:

You’re always welcome! Happy to hear that it worked :slight_smile: