Looking to shorten the product titles on my homepage but not the product page…
So I want the product titles to cut off with an eclipse on the homepage but not the product page, theme is debut
Hi @Wooow1481
Check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “theme. Liquid” file. Find the tag and paste the code below before the tag.
{% if template == 'index' %}
{% endif %}
And Save,
Result:
Before:
After:
I hope it help.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Got it
{% assign title_parts = product.title | split: “|” %}
{% if title_parts.size > 1 %}
{% assign truncated_title = title_parts.first | append: ‘’ %}
{% else %}
{% assign truncated_title = product.title %}
{% endif %}
{{ truncated_title }}
In the product-card grid.liquid
Thanks ChatGPT xD
So this will append nothing everytime the code sees the “|” character. Really cool. Debut Theme