Problem:
Display numeric custom field in European format.
Solution:
Add this code in your theme’s or child theme’s functions.php file:
function format_money( $atts ) { extract( shortcode_atts( array( 'price' => '0'), $atts) ); return $price = number_format($price, 0, ',', ' '); } add_shortcode('format_money', 'format_money');
Relevant Documentation:
you like to use integer or float value:
https://stackoverflow.com/questions/27967044/warning-number-format-expects-parameter-1-to-be-double-string-given-in#answer-27968675
This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.
Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.
No supporters are available to work today on Toolset forum. Feel free to create tickets and we will handle it as soon as we are online. Thank you for your understanding.
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
- | 12:00 – 17:00 | 12:00 – 17:00 | 12:00 – 17:00 | 12:00 – 17:00 | 12:00 – 17:00 | - |
- | 18:00 – 21:00 | 18:00 – 21:00 | 18:00 – 21:00 | 18:00 – 21:00 | 18:00 – 21:00 | - |
Supporter timezone: Asia/Karachi (GMT+05:00)
This topic contains 2 replies, has 2 voices.
Last updated by 7 years, 1 month ago.
Assisted by: Noman.