How to limit Product heading text to 10 words in MINIMOG Theme

Hi I want to know How to limit Product heading text in collection page only not in single product page to 10 words in MINIMOG Theme

Code for site - https://next.minimog.co/

To limit the product heading text in collection pages only to 10 words in the theme, you can follow these steps:

  1. From your Shopify admin panel, go to Online Store > Themes.
  2. Click on the Actions dropdown menu and select Edit code.
  3. In the left sidebar, open the Templates folder and click on collection.liquid.
  4. Find the line of code that starts with {{ product.title }}. This line of code is used to display the product title in the collection page.
  5. Replace {{ product.title }} with the following code:
{{ product.title | truncatewords: 10, '' }}

This code will limit the product title to 10 words and remove any trailing text.

I have checked there is no folder named collection.liquid !

you can refer https://next.minimog.co/