Please help to change the location of the product page

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…