We have a CMS number field that is being populated with a price. But when we include the field in a CMS collection, the price is one solid number. Example: 47534532 instead of $47,534,532
How do we get the number field to display currency symbol and proper commas?
function formatPriceNumber(priceNumberString) {
var cleaned = priceNumberString.replace(/\D/g, "");
var match = cleaned.match(/^(\d{2,3})(\d{3})(\d{3})$/);
if (match) {
return `$${match[1]},${match[2]},${match[3]}`;
}
return null;
}
Hey Stan, check out Intl.NumberFormat, it’s purpose-built for this.
I just tripped over a solid answer @webdev wrote on this also.
@Aaron_LeBlanc any time you’re wanting to do things Webflow does not have in-built support for, you will probably use script to create the behavior you want. It’s best to learn how to do this. For now, you’ll at least need to learn how to install it;
Stan’s code will format your numbers but you need to learn how to target it to the right elements, so that you’re formatting the right things. If you share a read-only link to your project we might be able to help you figure that out.
I hadn’t realized how limited the numeric formatting options are in CMS-bound numeric fields, so I’ve decided to add this to the WFU library as a custom attribute.
You can just add the script reference into your page’s </body> custom code area;
And then on the element you’ve bound to your CMS number field, add a custom attribute;
wfu-format=usd
EDIT: That’s all you need to do, however note that since this is a script running, the formatting will it will only appear on your published site an not in the designer. [ Thanks, Aaron! ]
Here are the docs if you’d like to go deeper on the options;
hi @memetican I have updated codePen example according to your note but in general IMO there is no difference between these two only approach how to as returned value is a string anyway.
IMO recommending installing library for simple task like that is total overkill but if you are happy with that …
hi @Aaron_LeBlanc you will store reference to field you need in variable and apply function only to this element, you can check example again to get what this mean. As @memetican mentioned please go to WFU to learn how to work with custom code.
There is also Posting guide pinned on to of each section that you should read and in future follow these recommendation as they have its purpose. I have copy these for you if you have missed them.
When posting please:
Required: Share your project’s Read-Only link AND live site’s Published link
The published link is the webflow.io subdomain where you can view the live site with custom code running. It is important to share this link, as custom code does not run in the Designer.
Upload as many screen shots/screen cast videos as possible to help others help you faster
Add a description and/or post a link to a working example of what you’re trying to achieve
Reply to users by tagging using the @ sign followed by their forum username like this: @Aaron_LeBlanc
whut is this craziness. sort of wild that the UX focused brand, that did create UI for every date format you could dream of, somehow neglected currency?