Plugin Directory

Changeset 3458984


Ignore:
Timestamp:
02/11/2026 01:18:12 PM (6 weeks ago)
Author:
PropertyHive
Message:

Update to version 1.0.28

Location:
property-hive-stamp-duty-calculator/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • property-hive-stamp-duty-calculator/trunk/README.txt

    r3301704 r3458984  
    33Tags: stamp duty, stamp duty calculator, stampduty, propertyhive, property hive, property, real estate, estate agents, estate agent
    44Requires at least: 3.8
    5 Tested up to: 6.8.1
    6 Stable tag: 1.0.27
     5Tested up to: 6.9
     6Stable tag: 1.0.28
    77License: GPLv3
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    5555
    5656== Changelog ==
     57
     58= 1.0.28 =
     59* Corrected issue where clicking FTB changed the purchase price
     60* Declared support for WordPress 6.9
    5761
    5862= 1.0.27 =
  • property-hive-stamp-duty-calculator/trunk/assets/js/propertyhive-stamp-duty-calculator.js

    r3293892 r3458984  
    1717    .val()
    1818    .replace(/,/g, '');
     19
     20  var original_purchase_price = purchase_price;
    1921
    2022  if (purchase_price != '') {
     
    8587   
    8688    jQuery(".stamp-duty-calculator input[name='purchase_price']").val(
    87       ph_sdc_add_commas(parseFloat(purchase_price).toFixed(2).replace('.00', ''))
     89      ph_sdc_add_commas(parseFloat(original_purchase_price).toFixed(2).replace('.00', ''))
    8890    );
    8991
  • property-hive-stamp-duty-calculator/trunk/propertyhive-stamp-duty-calculator.php

    r3301704 r3458984  
    44 * Plugin Uri: https://wp-property-hive.com/addons/stamp-duty-calculator/
    55 * Description: Quickly and easily add a stamp duty calculator to your website using a simple shortcode
    6  * Version: 1.0.27
     6 * Version: 1.0.28
    77 * Author: PropertyHive
    88 * Author URI: https://wp-property-hive.com
     
    1818     * @var string
    1919     */
    20     public $version = '1.0.27';
     20    public $version = '1.0.28';
    2121
    2222    /**
Note: See TracChangeset for help on using the changeset viewer.