How can I remove SKU numbers from product pages on warehouse theme?

We have two similar stores using “warehouse” theme. The display product SKU numbers and I would like to remove that. I found some info about adding script to theme liquid but don’t know where on placement.

This is what we have on the one.

{%- capture seo_page_title -%}
{%- if request.page_type == ‘search’ and search.terms != blank -%}
{{ search.terms | split: ’ AND ’ | last | split: ‘product_type:’ | last }} - {{ shop.name }}
{%- else -%}
{{ page_title }}{% if current_tags %}{% assign meta_tags = current_tags | join: ', ’ %} – {{ ‘general.meta.tags’ | t: tags: meta_tags }}{% endif %}{% if current_page != 1 %} – {{ ‘general.meta.page’ | t: page: current_page }}{% endif %}
{%- endif -%}
{%- endcapture -%}

{{- seo_page_title -}}

{%- if page_description -%}

{%- endif -%}

{%- if settings.favicon -%}

{%- endif -%}

{%- comment -%}Few prefech to increase performance on commonly used third-parties{%- endcomment -%}

{% render ‘social-meta-tags’ %}
{% render ‘css-variables’ %}

{{ content_for_header }}

{% render ‘microdata-schema’ %}

{%- if request.page_type == ‘customers/addresses’ -%}

{%- endif -%}

{%- if request.page_type != ‘cart’ -%}

{%- endif -%}

{% render ‘shogun-head’ %}

{%- comment -%}Common SVG definitions that we are re-using in several places{%- endcomment -%}





{{ ‘general.accessibility.skip_to_content’ | t }}

{% section ‘announcement-bar’ %}

{%- unless request.page_type == ‘cart’ -%}
{%- comment -%}As required by Shopify rules, popup must be removed on cart page to remove distraction{%- endcomment -%}
{% section ‘popups’ %}
{%- endunless -%}

{% section ‘header’ %}

{{ content_for_layout }}

{% section ‘static-text-with-icons’ %}

{% section ‘footer’ %}

  • {{ 'general.accessibility.new_window' | t }}

Hi @797Performance ,

Go to Assets > theme.css and paste this at the bottom of the file:

.product-meta__sku {
    display: none !important;
}

Hope it helps!