Solved

How to force lowercase letters on price field?

asd123
Excursionist
20 0 8

Hello.

This is what I put in the currency field in settings: 
<b>{{amount_with_comma_separator}}zł</b>
I put the "zł" with small letters because we want it to be like that but the letters keep on being capitalized.
How to fix that?

Accepted Solution (1)
Zworthkey
Shopify Partner
5581 642 1569

This is an accepted solution.

Hii, @asd123 
Paste this code on top of the theme.scss file.

span.grid-product__price b {
    text-transform: lowercase !important;
}

Thank You.

View solution in original post

Replies 4 (4)

Zworthkey
Shopify Partner
5581 642 1569

Hii, @asd123 
Kindly share your store URL and a screenshot of your problem so,
I can solve it perfectly.
Thank you.

Kinjaldavra
Shopify Partner
2302 570 1423

hello @asd123 

Please provide website url and if your store is password protected then also provide password So I will check and provide a solution here.

Zworthkey
Shopify Partner
5581 642 1569

This is an accepted solution.

Hii, @asd123 
Paste this code on top of the theme.scss file.

span.grid-product__price b {
    text-transform: lowercase !important;
}

Thank You.

asd123
Excursionist
20 0 8

It worked. Thank you so much.