Hi,
I am trying to show my SKU numbers on the product page.
I have read the instructions here - https://help.shopify.com/en/manual/online-store/themes/os/customize/show-sku however on Sections > product-template.liquid I do not find
{{ product.title }}
anywhere.
Any assistance would be appreciated!
I have attached code from product-template.liquid for reference.
{%- liquid
assign isModal = false
if template == ‘product.modal’
assign isModal = true
endif
-%}
{%- render ‘product-template’,
product: product,
description_style: section.settings.description_style,
image_position: section.settings.image_position,
image_container_width: section.settings.image_size,
section_id: product.id,
social: section.settings.social_enable,
isModal: isModal,
thumbnail_position: section.settings.thumbnail_position,
thumbnail_arrows: section.settings.thumbnail_arrows,
mobile_layout: section.settings.mobile_layout,
video_looping: section.settings.enable_video_looping,
video_style: section.settings.product_video_style
-%}
{%- if settings.enable_product_reviews and settings.reviews_layout == ‘full’ -%}
{% schema %}
{
“name”: “Product pages”,
“settings”: [
{
“type”: “select”,
“id”: “description_style”,
“label”: “Description position”,
“default”: “default”,
“options”: [
{
“value”: “default”,
“label”: “Next to media”
},
{
“value”: “full”,
“label”: “Below media”
}
]
},
{
“type”: “checkbox”,
“id”: “social_enable”,
“label”: “Enable social sharing”,
“default”: true
},
{
“type”: “header”,
“content”: “Media”
},
{
“type”: “paragraph”,
“content”: “Learn more about media types”
},
{
“type”: “select”,
“id”: “image_position”,
“label”: “Position”,
“default”: “left”,
“options”: [
{
“value”: “left”,
“label”: “Left”
},
{
“value”: “right”,
“label”: “Right”
}
]
},
{
“type”: “select”,
“id”: “image_size”,
“label”: “Size”,
“default”: “medium”,
“options”: [
{
“value”: “small”,
“label”: “Small”
},
{
“value”: “medium”,
“label”: “Medium”
},
{
“value”: “large”,
“label”: “Large”
}
]
},
{
“type”: “select”,
“id”: “thumbnail_position”,
“label”: “Thumbnail position”,
“default”: “beside”,
“options”: [
{
“value”: “beside”,
“label”: “Next to media”
},
{
“value”: “below”,
“label”: “Below media”
}
]
},
{
“type”: “checkbox”,
“id”: “thumbnail_arrows”,
“label”: “Show thumbnail arrows”
},
{
“type”: “select”,
“id”: “mobile_layout”,
“label”: “Mobile layout”,
“default”: “partial”,
“options”: [
{
“value”: “partial”,
“label”: “75% width”
},
{
“value”: “full”,
“label”: “Full width”
}
]
},
{
“type”: “checkbox”,
“id”: “enable_video_looping”,
“label”: “Enable video looping”,
“default”: true
},
{
“type”: “select”,
“id”: “product_video_style”,
“label”: “Video style”,
“default”: “muted”,
“options”: [
{
“value”: “muted”,
“label”: “Video without sound”
},
{
“value”: “unmuted”,
“label”: “Video with sound”
}
],
“info”: “Video with sound will not autoplay”
}
]
}
{% endschema %}



