Truncate Product Title on Product Card - Athens Theme

I need help with the code for Athens. I am trying to truncate the product title on the product cards. But need help with what code to use and where to place it. Any assistance would be great.

Hi @Senditures

You must have file named with card-product.liquid in theme.

Find the title in the code and add truncate filter into it and assign the number of text you want to show.

Example

{{ article.title | truncate: 15 }}

Hope this will help…