Hide Width On Product Page

How can I hide the width option on the product page?

Our shoes are all one width, but it’s uploaded from our inventory system with a width.

Hi @Mg71

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.selector-wrapper[data-select-label="Width"] {
    display: none;
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

Hi @Mg71

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme >
.selector-wrapper[data-select-label="Width"] {
    display: none !important;
}

Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl

  • Paste the code provided into the Custom CSS section.

Here is the result:

I hope this helps

Best,

Daisy