Changeset 2999048
- Timestamp:
- 11/20/2023 03:46:10 PM (2 years ago)
- Location:
- es-woocommerce-activecampaign/trunk
- Files:
-
- 3 edited
-
class-es-wc-integration-activecampaign.php (modified) (2 diffs)
-
es-woocommerce-activecampaign.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
es-woocommerce-activecampaign/trunk/class-es-wc-integration-activecampaign.php
r2995476 r2999048 11 11 * @class ES_WC_Integration_ActiveCampaign 12 12 * @extends WC_Integration 13 * @version 2. 0.313 * @version 2.1.1 14 14 * @package WooCommerce ActiveCampaign 15 15 * @author EqualServing … … 1040 1040 if ($code === 200) { 1041 1041 $body_object = json_decode($response["body"]); 1042 if ( $body_object->result_code === 0) {1042 if (!isset($body_object->result_code) || $body_object->result_code === 0) { 1043 1043 $this->log_this("error", "URL: ".$response["url"]." Result_code: ".$body_object->result_code." Result_message: ".$body_object->result_message); 1044 1044 $retval = FALSE; -
es-woocommerce-activecampaign/trunk/es-woocommerce-activecampaign.php
r2995476 r2999048 4 4 Plugin URI: https://www.equalserving.com/wordpress-plugins-equalserving/woocommerce-with-activecampaign/ 5 5 Description: Integrates Woocommerce with ActiveCampaign by adding customers to ActiveCampaign at time of purchase. 6 Version: 2.1. 06 Version: 2.1.1 7 7 Author: EqualServing.com 8 8 Author URI: http://www.equalserving.com/ 9 Tested up to: 6.4.1 9 10 WC requires at least: 3.6 10 WC tested up to: 8. 2.211 WC tested up to: 8.3 11 12 */ 12 13 -
es-woocommerce-activecampaign/trunk/readme.txt
r2995476 r2999048 7 7 Requires at least: 4.4 8 8 Requires PHP: 5.3 9 Tested up to: 8.2.2 10 Stable tag: 2.1.0 9 Tested up to: 6.4.1 10 Stable tag: 2.1.1 11 WC requires at least: 3.6 12 WC tested up to: 8.3 11 13 12 14 Easily add ActiveCampaign integration to WooCommerce. … … 68 70 69 71 == Changelog == 72 73 = 2.1.1 = 74 75 Release Date: Nov 20, 2023 76 77 * Verify compatibility with Wordpress version 6.4.1. 70 78 71 79 = 2.1.0 =
Note: See TracChangeset
for help on using the changeset viewer.