Changeset 3224130
- Timestamp:
- 01/17/2025 11:05:07 AM (12 months ago)
- Location:
- simple-sales-tax/trunk
- Files:
-
- 4 edited
-
changelog.txt (modified) (1 diff)
-
includes/frontend/class-sst-checkout.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
simple-sales-tax.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
simple-sales-tax/trunk/changelog.txt
r3175018 r3224130 2 2 3 3 Format based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 4 5 - [8.2.2] - 2025-01-17 = 6 7 Fixed: 8 - Calculate Tax when edit subscription 4 9 5 10 - [8.2.1] - 2024-10-24 = -
simple-sales-tax/trunk/includes/frontend/class-sst-checkout.php
r3151104 r3224130 81 81 is_checkout() || 82 82 doing_action( 'wc_ajax_square_digital_wallet_recalculate_totals' ) || 83 $this->is_store_api_request() 83 $this->is_store_api_request() || 84 $this->is_edit_subscription_request() 84 85 ); 85 86 … … 113 114 return 0 === strpos( $rest_route, '/wc/store/' ); 114 115 } 116 117 /** 118 * Check come from edit-subscription 119 * @return bool 120 */ 121 protected function is_edit_subscription_request() { 122 global $wp; 123 $subscriptionId = $wp->query_vars['edit-subscription'] ?? ''; 124 if(!$subscriptionId){ 125 $subscriptionId = $wp->query_vars['view-subscription'] ?? ''; 126 } 127 return $subscriptionId > 0; 128 } 115 129 116 130 /** -
simple-sales-tax/trunk/readme.txt
r3175018 r3224130 4 4 Requires at least: 4.5 5 5 Tested up to: 6.6 6 Stable tag: 8.2. 16 Stable tag: 8.2.2 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later -
simple-sales-tax/trunk/simple-sales-tax.php
r3175018 r3224130 7 7 * Author URI: https://taxcloud.com 8 8 * GitHub Plugin URI: https://github.com/bporcelli/simplesalestax 9 * Version: 8.2. 19 * Version: 8.2.2 10 10 * Text Domain: simple-sales-tax 11 11 * Domain Path: /languages/
Note: See TracChangeset
for help on using the changeset viewer.