Plugin Directory

Changeset 3181550


Ignore:
Timestamp:
11/04/2024 02:57:55 PM (17 months ago)
Author:
dotMailer
Message:

Updating trunk for version 1.4.5

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

Legend:

Unmodified
Added
Removed
  • dotdigital-for-woocommerce/trunk/class-dotdigital-woocommerce-bootstrapper.php

    r3173706 r3181550  
    1616 * Plugin Name:       Dotdigital for WooCommerce
    1717 * Description:       Connect your WooCommerce store to dotdigital and put customer, subscriber, product and order data at your fingertips.
    18  * Version:           1.4.4
     18 * Version:           1.4.5
    1919 * Author:            dotdigital
    2020 * Author URI:        https://www.dotdigital.com/
     
    5959use Dotdigital_WooCommerce\Includes\Dotdigital_WooCommerce_Activator;
    6060define('DOTDIGITAL_FOR_WOOCOMMERCE_PLUGIN_NAME', 'dotdigital-for-woocommerce');
    61 define('DOTDIGITAL_FOR_WOOCOMMERCE_PLUGIN_VERSION', '1.4.4');
     61define('DOTDIGITAL_FOR_WOOCOMMERCE_PLUGIN_VERSION', '1.4.5');
    6262define('DOTDIGITAL_FOR_WOOCOMMERCE_PLUGIN_DIR_PATH', __DIR__);
    6363define('DOTDIGITAL_FOR_WOOCOMMERCE_PUBLIC_MEDIA_PATH', plugin_dir_url(__FILE__) . 'public/image/');
  • dotdigital-for-woocommerce/trunk/includes/category/class-dotdigital-woocommerce-category.php

    r3173706 r3181550  
    2727        $categories = array();
    2828        $wc_terms = get_the_terms($product_id, 'product_cat');
     29        if (!$wc_terms) {
     30            return '';
     31        }
    2932        foreach ($wc_terms as $wc_term) {
    3033            $categories[] = $wc_term->name;
  • dotdigital-for-woocommerce/trunk/readme.txt

    r3173706 r3181550  
    44Tested up to: 6.6
    55Requires PHP: 7.4
    6 Stable tag: 1.4.4
     6Stable tag: 1.4.5
    77License: MIT
    88License URI: https://opensource.org/licenses/MIT
     
    6868
    6969== Changelog ==
     70
     71= 1.4.5 =
     72
     73**Bug fixes**
     74- We fixed a PHP warning that appears if a product in the cart has no 'product_cat' terms.
    7075
    7176= 1.4.4 =
Note: See TracChangeset for help on using the changeset viewer.