For example: Our product page is showing it’s SKU. We wan’t it removed so the customers wont see.
https://www.gamekings.co.uk/collections/sale/products/call-of-duty-vanguard-xbox-one-xbox-series-x
A user wants to hide the SKU (Stock Keeping Unit) from displaying on their Shopify product pages to prevent customers from seeing it.
Solution Provided:
.product__sku-container {
display: none;
}
A screenshot was shared demonstrating where to implement this code. This CSS solution hides the SKU element without requiring theme file modifications.
For example: Our product page is showing it’s SKU. We wan’t it removed so the customers wont see.
https://www.gamekings.co.uk/collections/sale/products/call-of-duty-vanguard-xbox-one-xbox-series-x
Go to your online store > Settings > Custom css
and paste this code there
.product__sku-container {
display: none;
}