hello,
I have two fields actual price and sale price,
I have used fields as
<p>Actual Price: <?php $output = get_field(‘actual_price’); $price = number_format( $output); echo $price; ?></p>
<p>Sale Price: <?php get_field(‘sale_price’); $price = number_format( $output); echo $price; ?></p>
This is giving the output as 641,530 and 601,530
How to display as 6,41,530 and 6,01,530??
I’ve never seen that notation. What currency is this?