How does changing product vendors to uppercase affect data?

Solved

How does changing product vendors to uppercase affect data?

dillon33
Shopify Partner
3 0 0

Hi, I have a 3+ year old Shopify business and there have been a lot of changes over time to streamline my business, one of which is we're trying to change the vendor names to completely uppercase. Right now all are mixed (some uppercase, few lowercase, few are mixed) i wanted to know if I change all my product's vendor names to completely uppercase will that affect the data by any chance? I wanted to know if I make the changes will the old name data be applied to the new vendor names?

Accepted Solution (1)

AlohaAkahai
Shopify Partner
70 3 28

This is an accepted solution.

Easy. Look for this code

 

{{ card_product.vendor }} and change it to {{ card_product.vendor | upcase }}.

 

Just don't change anything inside "< >" code or has a "| json".

Those will be vital to operation of site. 

 

in your template liquid

View solution in original post

Replies 4 (4)
dillon33
Shopify Partner
3 0 0

https://masonhome.in/ here you go

AlohaAkahai
Shopify Partner
70 3 28

This is an accepted solution.

Easy. Look for this code

 

{{ card_product.vendor }} and change it to {{ card_product.vendor | upcase }}.

 

Just don't change anything inside "< >" code or has a "| json".

Those will be vital to operation of site. 

 

in your template liquid

dillon33
Shopify Partner
3 0 0

Thanks, i will try this. But is there a way that i can merge 2 vendors as one? Because i have created 2 differnt ones now, old one and one with the new UPPERCASE format. So is it possible to merge both of them together? 

AlohaAkahai
Shopify Partner
70 3 28

Thats because you added {{ card_product.vendor  |  upcase }} . Remove the old one