Home › Forums › General Issues › Price Field and JS Mask › Reply To: Price Field and JS Mask
hi,
You can create field price as number field, and show format price width php
price filed value: 20000000
php format
<?php $price = get_field('price'); ?>
<?php echo number_format($price, 0); ?>
You have html format: 20,000,000
All format you can check here: http://php.net/manual/en/function.number-format.php
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.