Changeset 2319507
- Timestamp:
- 06/06/2020 02:36:53 PM (6 years ago)
- Location:
- convertkit-for-woocommerce/trunk
- Files:
-
- 3 edited
-
components/integration/integration.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
woocommerce-convertkit.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
convertkit-for-woocommerce/trunk/components/integration/integration.php
r2275518 r2319507 546 546 547 547 foreach( $order->get_items( ) as $item_key => $item ) { 548 if ( ! $item->get_product() ) { 549 continue; 550 } 548 551 $products[] = array( 549 552 'pid' => $item->get_product()->get_id(), … … 745 748 746 749 foreach( $order->get_items( ) as $item_key => $item ) { 750 if ( ! $item->get_product() ) { 751 continue; 752 } 747 753 $products[] = array( 748 754 'pid' => $item->get_product()->get_id(), -
convertkit-for-woocommerce/trunk/readme.txt
r2275518 r2319507 5 5 Requires at least: 3.6 6 6 Tested up to: 5.4.0 7 Stable tag: 1.4. 07 Stable tag: 1.4.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 50 50 51 51 == Changelog == 52 ### 1.4.1 2020-06-06 53 * Protect against missing products on order items 54 52 55 ### 1.4.0 2020-04-03 53 56 * Add support for sending manual orders to ConvertKit -
convertkit-for-woocommerce/trunk/woocommerce-convertkit.php
r2275518 r2319507 4 4 * Plugin URI: https://www.convertkit.com 5 5 * Description: Integrates WooCommerce with ConvertKit allowing customers to be automatically sent to your ConvertKit account. 6 * Version: 1.4. 06 * Version: 1.4.1 7 7 * Author: ConvertKit 8 8 * Author URI: https://www.convertkit.com 9 9 * 10 10 * WC requires at least: 3.0 11 * WC tested up to: 4. 011 * WC tested up to: 4.2 12 12 */ 13 13 … … 32 32 33 33 if ( ! defined( 'CKWC_VERSION' ) ) { 34 define( 'CKWC_VERSION', '1. 3.0' );34 define( 'CKWC_VERSION', '1.4.1' ); 35 35 } 36 36 37 37 if ( ! defined( 'CKWC_MIN_WC_VERSION' ) ) { 38 define( 'CKWC_MIN_WC_VERSION', ' 2.6.14' );38 define( 'CKWC_MIN_WC_VERSION', '3.0.0' ); 39 39 } 40 40
Note: See TracChangeset
for help on using the changeset viewer.