WP Residence Help WP Residence Help

  • WPRESIDENCE
  • Video Tutorials
  • Client Support
  • API
Home / Technical how to | Custom Code Required / How change price number format

How change price number format

4291 views 0

How to Change the Price Number Format

Theme versions 3.9.1 and higher

  1. Open the parent theme file wpresidence/libs/help_functions.php.
  2. Locate the function wpestate_format_number_price (around line 1179 in WPResidence version 5.3.2.1).
  3. Inside that function adjust the number_format call so that the decimals argument is set to 2. This forces prices to always show two decimal places even when the value ends in 00.
  4. If you are working in a child theme, copy the entire wpestate_format_number_price function to the child theme first because the original function is wrapped in if (! function_exists('wpestate_format_number_price')). Updating it in the child theme keeps the customization through future parent theme updates.

Guidance for older theme versions

The same price formatting logic lives in wp-content/themes/wpresidence/libs/help_functions.php. Adjust the number_format call in the wpestate_format_number_price function to match your desired number of decimals, thousands separator, and decimal separator. Refer to the PHP manual for number_format for parameter details.

Example: Indian numbering format

  1. Edit wp-content/themes/wpresidence/libs/help_functions.php and find the line where $price is constructed (the same wpestate_format_number_price function, near line 1179 in version 5.3.2.1).
  2. Replace the existing formatting block with the following locale-specific logic:
setlocale(LC_MONETARY, 'en_IN'); $price = money_format('%.0n', $price); 

This change prints prices using the Indian grouping style.

–

2. wp-content/plugins/wpresidence-core

 

Technical how to | Custom Code Required

Related Articles

  • Technical: Change the Schedule Tour Email Text and the Form Default Message
  • Property list filter customization
  • Technical – How to Change the Minimum Image Dimensions for Property Uploads in WPResidence
  • Introduction to WPResidence Header Customization

Help Categories

  • 18Agent, Agency & Developers
  • 5Blog Posts & Blog Lists
  • 39Elementor Shortcodes Built-In
  • 46FAQ
  • 15Footer
  • 5Getting Started
  • 37Header
  • 2IDX & MLSImport
  • 6Installation & Setup
  • 24Installation FAQ
  • 23Maps & Location Settings
  • 21Multi-Language - Third Party Plugins
  • 6Other Third party Plugins
  • 21Pages
  • 4Payments & Monetization
  • 20Property Lists, Categories & Archive
  • 37Property Pages & Layouts
  • 31Search & Filtering
  • 162Technical how to | Custom Code Required
  • 8Technical: Actions and filters
  • 7Technical: Child Theme
  • 86Theme Options & Global Settings
  • 7Translations & Languages
  • 16WPBakery Shortcodes
  • 50WPEstate / WPResidence Translate Plugin
  • 51WPResidence / WPEstate CRM
  • 50WPResidence 5.0 Documentation
  • 9WPResidence Elementor Studio

Join Us On

Powered by WP Estate - All Rights Reserved
  • WPRESIDENCE
  • Video Tutorials
  • Client Support
  • API