Changeset 3324844
- Timestamp:
- 07/09/2025 09:09:05 AM (9 months ago)
- Location:
- svea-checkout-for-woocommerce
- Files:
-
- 6 edited
- 1 copied
-
tags/3.3.2 (copied) (copied from svea-checkout-for-woocommerce/trunk)
-
tags/3.3.2/inc/Template_Handler.php (modified) (2 diffs)
-
tags/3.3.2/readme.txt (modified) (3 diffs)
-
tags/3.3.2/svea-checkout-for-woocommerce.php (modified) (2 diffs)
-
trunk/inc/Template_Handler.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/svea-checkout-for-woocommerce.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
svea-checkout-for-woocommerce/tags/3.3.2/inc/Template_Handler.php
r3320402 r3324844 45 45 46 46 // Remove checkout fields if they are not needed 47 add_action( 'w p', [ $this, 'maybe_remove_checkout_fields' ], 5);47 add_action( 'woocommerce_checkout_before_order_review', [ $this, 'maybe_remove_checkout_fields' ] ); 48 48 49 49 add_filter( 'woocommerce_my_account_my_orders_actions', [ $this, 'remove_pay_button_action' ], 10, 2 ); … … 308 308 public function maybe_remove_checkout_fields() { 309 309 if ( $this->is_svea() && ! wp_doing_ajax() ) { 310 // Flush checkout fields cache 311 WC()->checkout()->checkout_fields = null; 312 310 313 // Remove all default fields from WooCommerce to see what gets added by third party plugins 311 314 add_filter( 'woocommerce_checkout_fields', [ $this, 'remove_billing_and_shipping_fields' ], 100000 ); -
svea-checkout-for-woocommerce/tags/3.3.2/readme.txt
r3320402 r3324844 10 10 License: Apache 2.0 11 11 License URI: https://www.apache.org/licenses/LICENSE-2.0 12 Stable tag: 3.3. 112 Stable tag: 3.3.2 13 13 14 14 Supercharge your WooCommerce Store with powerful features to pay via Svea Checkout! … … 91 91 == Upgrade Notice == 92 92 93 = 3.3.2 = 94 3.3.2 is a patch release 95 96 = 3.3.1 = 97 3.3.1 is a patch release 98 93 99 = 3.3.0 = 94 100 3.3.0 is a minor release … … 384 390 385 391 == Changelog == 392 393 = 3.3.2 2025-07-09 = 394 - Update checkout fields clearing method to work with latest version of WooCommerce. 386 395 387 396 = 3.3.1 2025-07-01 = -
svea-checkout-for-woocommerce/tags/3.3.2/svea-checkout-for-woocommerce.php
r3320402 r3324844 14 14 * Plugin URI: https://wordpress.org/plugins/svea-checkout-for-woocommerce/ 15 15 * Description: Process payments in WooCommerce via Svea Checkout. 16 * Version: 3.3. 116 * Version: 3.3.2 17 17 * Requires Plugins: woocommerce 18 18 * Author: The Generation AB … … 47 47 * Version of plugin 48 48 */ 49 const VERSION = '3.3. 1';49 const VERSION = '3.3.2'; 50 50 51 51 /** -
svea-checkout-for-woocommerce/trunk/inc/Template_Handler.php
r3320402 r3324844 45 45 46 46 // Remove checkout fields if they are not needed 47 add_action( 'w p', [ $this, 'maybe_remove_checkout_fields' ], 5);47 add_action( 'woocommerce_checkout_before_order_review', [ $this, 'maybe_remove_checkout_fields' ] ); 48 48 49 49 add_filter( 'woocommerce_my_account_my_orders_actions', [ $this, 'remove_pay_button_action' ], 10, 2 ); … … 308 308 public function maybe_remove_checkout_fields() { 309 309 if ( $this->is_svea() && ! wp_doing_ajax() ) { 310 // Flush checkout fields cache 311 WC()->checkout()->checkout_fields = null; 312 310 313 // Remove all default fields from WooCommerce to see what gets added by third party plugins 311 314 add_filter( 'woocommerce_checkout_fields', [ $this, 'remove_billing_and_shipping_fields' ], 100000 ); -
svea-checkout-for-woocommerce/trunk/readme.txt
r3320402 r3324844 10 10 License: Apache 2.0 11 11 License URI: https://www.apache.org/licenses/LICENSE-2.0 12 Stable tag: 3.3. 112 Stable tag: 3.3.2 13 13 14 14 Supercharge your WooCommerce Store with powerful features to pay via Svea Checkout! … … 91 91 == Upgrade Notice == 92 92 93 = 3.3.2 = 94 3.3.2 is a patch release 95 96 = 3.3.1 = 97 3.3.1 is a patch release 98 93 99 = 3.3.0 = 94 100 3.3.0 is a minor release … … 384 390 385 391 == Changelog == 392 393 = 3.3.2 2025-07-09 = 394 - Update checkout fields clearing method to work with latest version of WooCommerce. 386 395 387 396 = 3.3.1 2025-07-01 = -
svea-checkout-for-woocommerce/trunk/svea-checkout-for-woocommerce.php
r3320402 r3324844 14 14 * Plugin URI: https://wordpress.org/plugins/svea-checkout-for-woocommerce/ 15 15 * Description: Process payments in WooCommerce via Svea Checkout. 16 * Version: 3.3. 116 * Version: 3.3.2 17 17 * Requires Plugins: woocommerce 18 18 * Author: The Generation AB … … 47 47 * Version of plugin 48 48 */ 49 const VERSION = '3.3. 1';49 const VERSION = '3.3.2'; 50 50 51 51 /**
Note: See TracChangeset
for help on using the changeset viewer.