Want to place product description under the images

Solved

Want to place product description under the images

gsdgsdfg
Visitor
2 0 1

Hello! 

I am looking for a way to put the product description where I painted the space red.

I'd like it to have some margins on the sides and would like to keep my customization selections and payment on the right of the images like shown in the photos, and just have the description underneath. 

Is this possible? Below is an image to try to give an idea of what I mean.

I am using the dawn theme version 12. Thank you! 

sc.pngsc1.png

Accepted Solution (1)

Dan-From-Ryviu
Shopify Partner
9193 1843 1875

This is an accepted solution.

Go to your Online store > Themes > Edit code > open main-product.liquid file paste this code below under </section> tag

{%- if product.description != blank -%}
  <div class="page-width">
    <div class="product__description rte quick-add-hidden" {{ block.shopify_attributes }}>
      {{ product.description }}
    </div>
  </div>
{%- endif -%}

And then remove Description block in your Product information 

Screenshot 2023-11-15 at 09.41.59.png

- Helpful? Like and Accept solution!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

View solution in original post

Replies 5 (5)

suyash1
Shopify Partner
9777 1213 1553

@gsdgsdfg - it needs bit code editing, but it is possible, can you please share your page link?

To build shopify pages use pagefly | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30. | Support me

Made4uo-Ribe
Shopify Partner
7738 1871 2290

Hi @gsdgsdfg 

 

If you are comfortable with the code, you can follow the instructions below

 

  • From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  • Find the theme that you want to edit and click on "Actions" and then "Edit code".
  • In the "Section" folder, click on "main-product.liquid" file
  • Find the comment below by clicking Ctrl + F in your keyboard, then paste the text below
{% comment %} Duplicate gallery to display after product content on tablet/desktop breakpoint {% endcomment %}

 

  • After the {% endif %}, paste the code below.
       {%- if product.description != blank -%}
                <div class="product__description rte quick-add-hidden" {{ block.shopify_attributes }}>
                  {{ product.description }}
                </div>
              {%- endif -%}

 

  • And Save. 
  • See image for code placement reference

Made4uoRibe_0-1700015748490.png

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

 

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

Dan-From-Ryviu
Shopify Partner
9193 1843 1875

This is an accepted solution.

Go to your Online store > Themes > Edit code > open main-product.liquid file paste this code below under </section> tag

{%- if product.description != blank -%}
  <div class="page-width">
    <div class="product__description rte quick-add-hidden" {{ block.shopify_attributes }}>
      {{ product.description }}
    </div>
  </div>
{%- endif -%}

And then remove Description block in your Product information 

Screenshot 2023-11-15 at 09.41.59.png

- Helpful? Like and Accept solution!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

gsdgsdfg
Visitor
2 0 1

Hello! This worked. Is there a way to add a little more margin to the top? 

Dan-From-Ryviu
Shopify Partner
9193 1843 1875

You can do this by updating code to this

{%- if product.description != blank -%}
<div class="page-width" style=“margin-top: 30px;”>
<div class="product__description rte quick-add-hidden" {{ block.shopify_attributes }}>
{{ product.description }}
</div>
</div>
{%- endif -%}

 

- Helpful? Like and Accept solution!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.