🔒 EXCLUSIVE: Changeset/ - Full Gallery 2025

Changeset 2319507


Ignore:
Timestamp:
06/06/2020 02:36:53 PM (6 years ago)
Author:
travisnorthcutt
Message:

Version 1.4.1

Location:
convertkit-for-woocommerce/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • convertkit-for-woocommerce/trunk/components/integration/integration.php

    r2275518 r2319507  
    546546
    547547            foreach( $order->get_items( ) as $item_key => $item ) {
     548                if ( ! $item->get_product() ) {
     549                    continue;
     550                }
    548551                $products[] = array(
    549552                    'pid'        => $item->get_product()->get_id(),
     
    745748
    746749            foreach( $order->get_items( ) as $item_key => $item ) {
     750                if ( ! $item->get_product() ) {
     751                    continue;
     752                }
    747753                $products[] = array(
    748754                        'pid'        => $item->get_product()->get_id(),
  • convertkit-for-woocommerce/trunk/readme.txt

    r2275518 r2319507  
    55Requires at least: 3.6
    66Tested up to: 5.4.0
    7 Stable tag: 1.4.0
     7Stable tag: 1.4.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5050
    5151== Changelog ==
     52### 1.4.1  2020-06-06
     53* Protect against missing products on order items
     54
    5255### 1.4.0  2020-04-03
    5356* Add support for sending manual orders to ConvertKit
  • convertkit-for-woocommerce/trunk/woocommerce-convertkit.php

    r2275518 r2319507  
    44 * Plugin URI:  https://www.convertkit.com
    55 * Description: Integrates WooCommerce with ConvertKit allowing customers to be automatically sent to your ConvertKit account.
    6  * Version: 1.4.0
     6 * Version: 1.4.1
    77 * Author: ConvertKit
    88 * Author URI: https://www.convertkit.com
    99 *
    1010 * WC requires at least: 3.0
    11  * WC tested up to: 4.0
     11 * WC tested up to: 4.2
    1212 */
    1313
     
    3232
    3333if ( ! defined( 'CKWC_VERSION' ) ) {
    34     define( 'CKWC_VERSION', '1.3.0' );
     34    define( 'CKWC_VERSION', '1.4.1' );
    3535}
    3636
    3737if ( ! defined( 'CKWC_MIN_WC_VERSION' ) ) {
    38     define( 'CKWC_MIN_WC_VERSION', '2.6.14' );
     38    define( 'CKWC_MIN_WC_VERSION', '3.0.0' );
    3939}
    4040
Note: See TracChangeset for help on using the changeset viewer.