I need to short product collection title short its look massive


i need to short product title in collection home page

my website is zulri.co

Hey @rajsoni5253

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above tag

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Go to Online Store → Theme → Edit Code

Find product-grid or product-grid-item liquid file

Ctrl + F look for product.title

Change {{ product.title }} to {{product.title | truncate: 30 }}

truncate: 30

means title will be cropped after 30 characters. Feel free to change number

You can also use this:

truncatewords: 5

It will crop title after 5 words