How to remove SKU from my product page?

Topic summary

A user needs help removing the SKU (Stock Keeping Unit) display from their Shopify product page.

Solution provided:

  • Navigate to: Online Store > Themes > Customize > Theme settings
  • Add custom CSS code to hide the SKU element
  • The CSS targets the product SKU class with display: none !important

Status: A technical solution has been offered but not yet confirmed as resolved by the original poster.

Summarized with AI on November 4. AI used: claude-sonnet-4-5-20250929.

Help! My SKU is displayed on my product page. I have no idea how to remove it.

https://pixietrixieplayhouse.com/pages/spaservices

Hi @pixietrixie

You can add this code to Custom CSS in Online Store > Themes > Customize > Theme settings.

.product__sku { display: none !important; }
1 Like