Changeset 3405214
- Timestamp:
- 11/28/2025 01:32:28 PM (3 months ago)
- Location:
- smaily-connect
- Files:
-
- 6 edited
- 1 copied
-
tags/1.4.3 (copied) (copied from smaily-connect/trunk)
-
tags/1.4.3/integrations/woocommerce/cart.class.php (modified) (1 diff)
-
tags/1.4.3/readme.txt (modified) (2 diffs)
-
tags/1.4.3/smaily-connect.php (modified) (2 diffs)
-
trunk/integrations/woocommerce/cart.class.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/smaily-connect.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
smaily-connect/tags/1.4.3/integrations/woocommerce/cart.class.php
r3287639 r3405214 23 23 public function register_hooks() { 24 24 add_action( 'woocommerce_cart_updated', array( $this, 'smaily_update_cart_details' ) ); 25 add_action( 'woocommerce_thankyou', array( $this, 'smaily_checkout_delete_cart' ) ); 25 26 add_action( 'woocommerce_checkout_order_processed', array( $this, 'smaily_checkout_delete_cart' ) ); 27 add_action( 'woocommerce_store_api_checkout_order_processed', array( $this, 'smaily_checkout_delete_cart' ) ); 26 28 } 27 29 -
smaily-connect/tags/1.4.3/readme.txt
r3400447 r3405214 6 6 Tested up to: 6.8 7 7 WC tested up to: 9.6.1 8 Stable tag: 1.4. 28 Stable tag: 1.4.3 9 9 License: GPLv3 or later 10 10 … … 60 60 61 61 == Changelog == 62 63 = 1.4.3 = 64 65 Added more hooks where the Smaily abandoned cart record is deleted. The current approach might on some occasions leave abandoned cart records lingering around even when the user has made a purchase. 62 66 63 67 = 1.4.2 = -
smaily-connect/tags/1.4.3/smaily-connect.php
r3400447 r3405214 12 12 * Plugin URI: https://smaily.com/help/user-manual/smaily-connect-for-wordpress/ 13 13 * Text Domain: smaily-connect 14 * Version: 1.4. 214 * Version: 1.4.3 15 15 */ 16 16 … … 23 23 * Current plugin version. 24 24 */ 25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.4. 2' );25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.4.3' ); 26 26 27 27 /** -
smaily-connect/trunk/integrations/woocommerce/cart.class.php
r3287639 r3405214 23 23 public function register_hooks() { 24 24 add_action( 'woocommerce_cart_updated', array( $this, 'smaily_update_cart_details' ) ); 25 add_action( 'woocommerce_thankyou', array( $this, 'smaily_checkout_delete_cart' ) ); 25 26 add_action( 'woocommerce_checkout_order_processed', array( $this, 'smaily_checkout_delete_cart' ) ); 27 add_action( 'woocommerce_store_api_checkout_order_processed', array( $this, 'smaily_checkout_delete_cart' ) ); 26 28 } 27 29 -
smaily-connect/trunk/readme.txt
r3400447 r3405214 6 6 Tested up to: 6.8 7 7 WC tested up to: 9.6.1 8 Stable tag: 1.4. 28 Stable tag: 1.4.3 9 9 License: GPLv3 or later 10 10 … … 60 60 61 61 == Changelog == 62 63 = 1.4.3 = 64 65 Added more hooks where the Smaily abandoned cart record is deleted. The current approach might on some occasions leave abandoned cart records lingering around even when the user has made a purchase. 62 66 63 67 = 1.4.2 = -
smaily-connect/trunk/smaily-connect.php
r3400447 r3405214 12 12 * Plugin URI: https://smaily.com/help/user-manual/smaily-connect-for-wordpress/ 13 13 * Text Domain: smaily-connect 14 * Version: 1.4. 214 * Version: 1.4.3 15 15 */ 16 16 … … 23 23 * Current plugin version. 24 24 */ 25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.4. 2' );25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.4.3' ); 26 26 27 27 /**
Note: See TracChangeset
for help on using the changeset viewer.