Changeset 3181550
- Timestamp:
- 11/04/2024 02:57:55 PM (17 months ago)
- Location:
- dotdigital-for-woocommerce/trunk
- Files:
-
- 3 edited
-
class-dotdigital-woocommerce-bootstrapper.php (modified) (2 diffs)
-
includes/category/class-dotdigital-woocommerce-category.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dotdigital-for-woocommerce/trunk/class-dotdigital-woocommerce-bootstrapper.php
r3173706 r3181550 16 16 * Plugin Name: Dotdigital for WooCommerce 17 17 * Description: Connect your WooCommerce store to dotdigital and put customer, subscriber, product and order data at your fingertips. 18 * Version: 1.4. 418 * Version: 1.4.5 19 19 * Author: dotdigital 20 20 * Author URI: https://www.dotdigital.com/ … … 59 59 use Dotdigital_WooCommerce\Includes\Dotdigital_WooCommerce_Activator; 60 60 define('DOTDIGITAL_FOR_WOOCOMMERCE_PLUGIN_NAME', 'dotdigital-for-woocommerce'); 61 define('DOTDIGITAL_FOR_WOOCOMMERCE_PLUGIN_VERSION', '1.4. 4');61 define('DOTDIGITAL_FOR_WOOCOMMERCE_PLUGIN_VERSION', '1.4.5'); 62 62 define('DOTDIGITAL_FOR_WOOCOMMERCE_PLUGIN_DIR_PATH', __DIR__); 63 63 define('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 27 27 $categories = array(); 28 28 $wc_terms = get_the_terms($product_id, 'product_cat'); 29 if (!$wc_terms) { 30 return ''; 31 } 29 32 foreach ($wc_terms as $wc_term) { 30 33 $categories[] = $wc_term->name; -
dotdigital-for-woocommerce/trunk/readme.txt
r3173706 r3181550 4 4 Tested up to: 6.6 5 5 Requires PHP: 7.4 6 Stable tag: 1.4. 46 Stable tag: 1.4.5 7 7 License: MIT 8 8 License URI: https://opensource.org/licenses/MIT … … 68 68 69 69 == 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. 70 75 71 76 = 1.4.4 =
Note: See TracChangeset
for help on using the changeset viewer.