I would like to edit the (Men’s and Women’s) - custom coded to all caps (MEN’S and WOMEN’S) in homepage and collection page. Could you please advise where to edit the code?
The Shopify page is colehaan-my.myshopify.com.
I would like to edit the (Men’s and Women’s) - custom coded to all caps (MEN’S and WOMEN’S) in homepage and collection page. Could you please advise where to edit the code?
The Shopify page is colehaan-my.myshopify.com.
Hi @RyanCheong ,
To ensure the text transformation is applied correctly across all product titles, please add the following JavaScript code in your theme.liquid file, just before the closing tag:
Steps:
In your Shopify admin, go to Online Store > Themes.
Click Actions > Edit Code on your current theme.
Open the layout/theme.liquid file.
Scroll to the bottom and paste the above block just before the tag.
Save the changes.
Hi @RyanCheong
The simple way is to add a code to make all your product titles uppercase.
You can do that by adding this code to Custom CSS in Sales channels > Online Store > Themes > Customize
.product-list .product-block__title { text-transform: uppercase; }