Changeset 3458984
- Timestamp:
- 02/11/2026 01:18:12 PM (6 weeks ago)
- Location:
- property-hive-stamp-duty-calculator/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
assets/js/propertyhive-stamp-duty-calculator.js (modified) (2 diffs)
-
propertyhive-stamp-duty-calculator.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
property-hive-stamp-duty-calculator/trunk/README.txt
r3301704 r3458984 3 3 Tags: stamp duty, stamp duty calculator, stampduty, propertyhive, property hive, property, real estate, estate agents, estate agent 4 4 Requires at least: 3.8 5 Tested up to: 6. 8.16 Stable tag: 1.0.2 75 Tested up to: 6.9 6 Stable tag: 1.0.28 7 7 License: GPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 55 55 56 56 == Changelog == 57 58 = 1.0.28 = 59 * Corrected issue where clicking FTB changed the purchase price 60 * Declared support for WordPress 6.9 57 61 58 62 = 1.0.27 = -
property-hive-stamp-duty-calculator/trunk/assets/js/propertyhive-stamp-duty-calculator.js
r3293892 r3458984 17 17 .val() 18 18 .replace(/,/g, ''); 19 20 var original_purchase_price = purchase_price; 19 21 20 22 if (purchase_price != '') { … … 85 87 86 88 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', '')) 88 90 ); 89 91 -
property-hive-stamp-duty-calculator/trunk/propertyhive-stamp-duty-calculator.php
r3301704 r3458984 4 4 * Plugin Uri: https://wp-property-hive.com/addons/stamp-duty-calculator/ 5 5 * Description: Quickly and easily add a stamp duty calculator to your website using a simple shortcode 6 * Version: 1.0.2 76 * Version: 1.0.28 7 7 * Author: PropertyHive 8 8 * Author URI: https://wp-property-hive.com … … 18 18 * @var string 19 19 */ 20 public $version = '1.0.2 7';20 public $version = '1.0.28'; 21 21 22 22 /**
Note: See TracChangeset
for help on using the changeset viewer.