How can I truncate a product's description to show only the first 100 characters on my Shopify store

Solved

How can I truncate a product's description to show only the first 100 characters on my Shopify store

fenis
Visitor
1 0 0

I'm trying to display a shortened version of my product descriptions (just the first 100 characters) on my product listing pages. This will help create cleaner, more concise previews of the descriptions. How can I achieve this using Shopify Liquid?

Accepted Solution (1)

Huptech-Web
Shopify Partner
1169 234 264

This is an accepted solution.

Hello! @fenis Please follow these steps to add this code:

1. Go to Online Store > Themes > Edit Code.
2. Open the product template (product.liquid or product-template.liquid).
3. Replace {{ product.description }} with {{ product.description | truncate: 100 }}.
4. Save and preview the changes.

{{ product.description | truncate: 100 }}

 
If you need further assistance, please let me know. If you found my help useful, consider liking this message and marking it as the Accepted Solution.
Best regards
K.K

If you found this response helpful, please do like and accept the solution. Thanks!
Need support with Customizing your Shopify store?
Feel free to contact me at info@huptechweb.com or Visit our website Huptech Web.
Instant Shortcode Builder: Integrate customizable UI features anywhere in your store - No coding knowledge required

View solution in original post

Reply 1 (1)

Huptech-Web
Shopify Partner
1169 234 264

This is an accepted solution.

Hello! @fenis Please follow these steps to add this code:

1. Go to Online Store > Themes > Edit Code.
2. Open the product template (product.liquid or product-template.liquid).
3. Replace {{ product.description }} with {{ product.description | truncate: 100 }}.
4. Save and preview the changes.

{{ product.description | truncate: 100 }}

 
If you need further assistance, please let me know. If you found my help useful, consider liking this message and marking it as the Accepted Solution.
Best regards
K.K

If you found this response helpful, please do like and accept the solution. Thanks!
Need support with Customizing your Shopify store?
Feel free to contact me at info@huptechweb.com or Visit our website Huptech Web.
Instant Shortcode Builder: Integrate customizable UI features anywhere in your store - No coding knowledge required