Plugin Directory

Changeset 3405214


Ignore:
Timestamp:
11/28/2025 01:32:28 PM (3 months ago)
Author:
sendsmaily
Message:

Release 1.4.3, see readme.txt for the changelog.

Location:
smaily-connect
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • smaily-connect/tags/1.4.3/integrations/woocommerce/cart.class.php

    r3287639 r3405214  
    2323    public function register_hooks() {
    2424        add_action( 'woocommerce_cart_updated', array( $this, 'smaily_update_cart_details' ) );
     25        add_action( 'woocommerce_thankyou', array( $this, 'smaily_checkout_delete_cart' ) );
    2526        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' ) );
    2628    }
    2729
  • smaily-connect/tags/1.4.3/readme.txt

    r3400447 r3405214  
    66Tested up to: 6.8
    77WC tested up to: 9.6.1
    8 Stable tag: 1.4.2
     8Stable tag: 1.4.3
    99License: GPLv3 or later
    1010
     
    6060
    6161== Changelog ==
     62
     63= 1.4.3 =
     64
     65Added 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.
    6266
    6367= 1.4.2 =
  • smaily-connect/tags/1.4.3/smaily-connect.php

    r3400447 r3405214  
    1212 * Plugin URI:        https://smaily.com/help/user-manual/smaily-connect-for-wordpress/
    1313 * Text Domain:       smaily-connect
    14  * Version:           1.4.2
     14 * Version:           1.4.3
    1515*/
    1616
     
    2323 * Current plugin version.
    2424 */
    25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.4.2' );
     25define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.4.3' );
    2626
    2727/**
  • smaily-connect/trunk/integrations/woocommerce/cart.class.php

    r3287639 r3405214  
    2323    public function register_hooks() {
    2424        add_action( 'woocommerce_cart_updated', array( $this, 'smaily_update_cart_details' ) );
     25        add_action( 'woocommerce_thankyou', array( $this, 'smaily_checkout_delete_cart' ) );
    2526        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' ) );
    2628    }
    2729
  • smaily-connect/trunk/readme.txt

    r3400447 r3405214  
    66Tested up to: 6.8
    77WC tested up to: 9.6.1
    8 Stable tag: 1.4.2
     8Stable tag: 1.4.3
    99License: GPLv3 or later
    1010
     
    6060
    6161== Changelog ==
     62
     63= 1.4.3 =
     64
     65Added 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.
    6266
    6367= 1.4.2 =
  • smaily-connect/trunk/smaily-connect.php

    r3400447 r3405214  
    1212 * Plugin URI:        https://smaily.com/help/user-manual/smaily-connect-for-wordpress/
    1313 * Text Domain:       smaily-connect
    14  * Version:           1.4.2
     14 * Version:           1.4.3
    1515*/
    1616
     
    2323 * Current plugin version.
    2424 */
    25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.4.2' );
     25define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.4.3' );
    2626
    2727/**
Note: See TracChangeset for help on using the changeset viewer.