Want to place product description under the images

Solved
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
5371 974 997

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 a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

View solution in original post

Replies 5 (5)
suyash1
Shopify Partner
8645 1059 1405

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

You are welcome to contact me - suyash.patankar@gmail.com, My timezone is GMT+5:30,to build shopify pages use pagefly

Support me 🙂
Made4uo-Ribe
Shopify Partner
4007 916 1120

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!

 

Please don't forget to 

Like

 and 

Mark Solution 

to the post that helped you. Thanks!
Sip, savor, and support – your

Coffee Tip

 helps us keep coding magic.❤️❤️❤️
Need a knowledgeable developer? Come and visit us at

Made4uo.com


Dan-From-Ryviu
Shopify Partner
5371 974 997

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 a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. 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
5371 974 997

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 a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now