All things Shopify and commerce
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello,
I'm currently using Dawn version 7.0.1, how can I Capitalize my Product name?
Hey @Inochhi
To make changes in your product title, you need to follow the steps below!
If I managed to help you then don't forget to Mark it as Solution.
Have a Great Day! :))
Hi,
The solution above works if only few products need amending, yet if you would like to have this feature to be applied automatically, try this:
Open Themes, create a duplicate, click Edit Code.
1. Look for the file called product-grid-item.liquid
This file shows your products within collections. Press Ctrl + F and search for {{ product.title }}
Change it to
{{ product.title | capitalize }}
Do the same stuff in following file:
product-template.liquid
Hope this helps.
Hello @Inochhi ,
It's GemPages support team and glad to support you today.
I would like to give you the recommendation to support you so kindly follow the steps below:
1. Go to Online Store > Theme > Edit code of your current theme
2. Open your theme.liquid theme file
3. Paste the below code before </head>
<style>
.product-card-wrapper .card__content .card__information .card__heading,
.product__title {
text-transform: uppercase;
}
</style>
If you require any further information, feel free to contact me.
Best regards,
GemPages Support Team
Hi GemPages support team,
Would like to ask how do I capitalize all product names in my theme :
colehaan-my.myshopify.com
Thanks!