Please help to change the location of the product page

Topic summary

A user wants to relocate the product description on their Dawn theme product page from the right side to below the main product image.

Initial Solution Provided:

  • Edit the main-product.liquid file in the Sections folder
  • Search for {% render 'product-media-modal', variant_images: variant_images %}
  • Insert specific code above this line to move the description below the product image

Issue Encountered:
The user cannot locate the specified code snippet in their theme files. They only found references to “product media modal” but not the exact line mentioned.

Alternative Help:
Another participant shared a YouTube video tutorial demonstrating how to move the product description to the desired location.

Status: The issue remains unresolved as the original code-based solution couldn’t be implemented. The user is exploring the video tutorial as an alternative approach.

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

Right now Dawn’s product description is on the right side of the page, and I’d like to replace it below the main product image!

Like this:

Hi @Ajing ,

If you’d like to move the product description below the main product image in the Dawn theme, follow these steps:

  1. Go to your Shopify admin and navigate to Online Store > Themes.

  2. Click on Actions next to your current theme and select Edit code.

  3. In the code editor, locate the main-product.liquid file. This is typically found under the Sections folder.

  4. In the main-product.liquid file, search for this line:

{% render 'product-media-modal', variant_images: variant_images %}
  1. Add the following code just above the searched line to move the product description below the product image:
{%- if product.description != blank -%}
  
    {{ product.description }}
  

{%- endif -%}

  1. Click Save to apply the changes.

This will shift the product description to appear below the main product image, providing a more vertical layout for your product page.

Please like the solution to let me know.

If you need further assistance, feel free to reach out!

Regards,

Sweans

Hi Sweans,

Thanks for your help, but I can’t find the code "{% render ‘product-media-modal’, variant_images: variant_images %}‘

For “product media modal”, all I found below:

Hi @Ajing ,

Request you to refer the below video how you can move your product description on your desired location.

Hope this will helps…