WP Residence Help WP Residence Help

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

How change price number format

4020 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 – How to Change the Minimum Image Dimensions for Property Uploads in WPResidence
  • Introduction to WPResidence Header Customization
  • Understanding WPResidence Header Types: An Overview
  • Customizing the WPResidence Logo Display

WP Residence Documentation

  • 1. General
    • How to Get Support
    • Get your buyer license code.
    • Use SSL / https
    • Server / Theme Requirements
  • 2. Installation
  • 3. Installation FAQ
  • 4. Advanced Search
    • Advanced Search Display Settings
    • Advanced Search Form
    • Geolocation Search for Half Map
    • Save Search Theme Options
    • Advanced Search Colors
  • 5. Agent, Agency & Developers
  • 6. Property Page
  • 7. Properties List
  • 8. Property Taxonomies
  • WpResidence Elementor Studio
  • 10. Blog Posts & Blog List
  • 11. Shortcodes
    • Contact Form
    • Featured Agency/Developer
    • Membership Packages
    • Testimonials
    • Google Map with Property Marker
    • Listings per Agent, Agency or Developer
    • Display Categories
    • Agent List
    • Recent Items Slider
    • Recent items
    • List Properties or Articles by ID
    • Featured Agent
    • Featured Article
    • Featured Property
    • Login & Register Form
    • Icon Content Box Shortcode
  • 12. Widgets
  • Theme Options
    • General Settings
    • User Types Settings
    • Appearance
    • Logos & Favicon
    • Header
    • Footer Style and Colors
    • Price & Currency
    • Property Custom Fields
    • Features & Amenities
    • Listing Labels
    • Theme Slider
    • Permalinks
    • Splash Page
    • Social & Contact
    • Map Settings
    • Pin Management
    • How read from file works
    • General Design Settings
    • Custom Colors Settings
    • Header Design & Colors
    • Mobile Menu Colors
    • User Dashboard Colors
    • Print PDF Design
    • Property, Agent, Blog Lists Design Settings
    • Sidebar Widget Design
    • Font management
    • How to add custom CSS
    • Custom Property Card Unit – Beta version
    • Email Management
    • Import & Export theme options
    • reCaptcha settings
    • YELP API Integration
    • iHomefinder Optima Express IDX
    • MEMBERSHIP & PAYMENT Settings
    • Property Submission Page
    • PayPal Setup
    • Stripe Setup
    • Wire Transfer Payment Method
  • Translation
  • FAQ
  • Pages
  • Header
  • Footer
  • Google or Open Street Maps
  • Payment Options
  • Plugins
    • Included Plugins
    • Third Party Plugins – IDX Compatibility
    • Third Party Plugins – Multi Languages
    • Third party Plugins – Other
  • Technical
    • Technical how to | Custom Code Required
    • Technical: Child Theme

Join Us On

Powered by WP Estate - All Rights Reserved
  • WpEstate
  • How to Build Your Website
  • Video Tutorials
  • Client Support
  • API