Product templates - add image - in Dawn V 15.3.0

Topic summary

A user wants to add a customizable promotional image (brochure, sale banner, seasonal graphics) to product pages in Dawn theme v15.3.0. The image should appear above the description or below the price and be easily changeable monthly for different promotions.

Solution Provided:

  • Use the “Custom Liquid” block within the product page section (no code editing required)
  • Create a page titled ‘promo-block’ containing the promotional image
  • Insert provided liquid code that dynamically pulls content from this page
  • Benefits: Content updates automatically when the page is edited, and supports more than just images

Status: A working solution has been offered with code snippet and implementation instructions. The approach allows flexible, non-technical content management through Shopify’s page editor.

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

I would like to create an additional Product template which I can add an image of the current brochure, or sale image or Xmas/ Easter that I can change each month (or create a new one) especially for a promotions / sale etc.

It could go above the description similar to these examples, or under the price etc.

Thank you

I would like to create an additional Product template which I can add an image of the current brochure, or sale image or Xmas/ Easter that I can change each month (or create a new one) especially for a promotions / sale etc.

It could go above the description similar to these examples, or under the price etc.

Thank you

A simple approach without the need to edit theme code is to use the “Custom Liquid” block in the product page section.

The code can be like this

{% assign content = pages['promo-block'].content | strip %}
{% if content != blank %}
  
    {{ content}}
  

{% endif %}

Then you create a page with a title ‘promo-block’ and put you image there.

The benefit of this solution is that you can change the content of this page and it will be automatically pulled into product template.

And it does not have to be an image.