I want to hide color variant on product pages Impact

Solved

I want to hide color variant on product pages Impact

oguzsanci1
Shopify Partner
6 0 2

Hi,

 

Is anyone able to help me out with a code to hide the color variant on product pages. I want to keep the size option but hide the color option.

Anyone able to help out with this?

oguzsanci1_0-1741808433918.png

Here's the link to the site

Accepted Solution (1)

Moeed
Shopify Partner
7073 1903 2332

This is an accepted solution.

Hey @oguzsanci1 

 

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>
fieldset.variant-picker__option:has(.color-swatch) {
    display: none !important;
}
</style>

RESULT:

Moeed_0-1741809066147.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

Reply 1 (1)

Moeed
Shopify Partner
7073 1903 2332

This is an accepted solution.

Hey @oguzsanci1 

 

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>
fieldset.variant-picker__option:has(.color-swatch) {
    display: none !important;
}
</style>

RESULT:

Moeed_0-1741809066147.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications