Re: Add Product Descriptions to Featured Collections Section in Debut Theme

Solved

Add Product Descriptions to Featured Collections Section in Debut Theme

Berkan1
Shopify Partner
17 1 6

Hello, i am trying to show the descriptions of the products of the collection right under the shown product.

It is the Featured Collection Section of the Debut Theme.

Like this:

productdescription.PNG 

I tried this in the collection.liquid:

codeexample.png

But unfortunately it still doesnt appear.

I hope someone can help me with this!

 

(PS: I modified the collection.liquid beforehand so that the Section is a Slider).

Accepted Solution (1)

Guleria
Shopify Partner
4049 796 1145

This is an accepted solution.

Hello @Berkan1 ,

Code in product-card-grid.liquid under Snippets

Here just under this code 

{% include 'product-price-listing', product: product, show_vendor: show_vendor %}

add this one

{{ product.description }}

 

Thanks

 

- Custom themes, UI/UX design, ongoing maintenance & support.
- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder

View solution in original post

Replies 2 (2)

Guleria
Shopify Partner
4049 796 1145

This is an accepted solution.

Hello @Berkan1 ,

Code in product-card-grid.liquid under Snippets

Here just under this code 

{% include 'product-price-listing', product: product, show_vendor: show_vendor %}

add this one

{{ product.description }}

 

Thanks

 

- Custom themes, UI/UX design, ongoing maintenance & support.
- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
Berkan1
Shopify Partner
17 1 6

This worked perfectly fine. Thank you very much!