Help! My SKU is displayed on my product page. I have no idea how to remove it.
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.
Hi @pixietrixie
You can add this code to Custom CSS in Online Store > Themes > Customize > Theme settings.
.product__sku { display: none !important; }
1 Like