Changeset 3465934
- Timestamp:
- 02/20/2026 04:31:52 PM (33 hours ago)
- Location:
- wc-ac-hook
- Files:
-
- 6 edited
-
tags/1.4.3/includes/main-class.php (modified) (2 diffs)
-
tags/1.4.3/readme.txt (modified) (2 diffs)
-
tags/1.4.3/wc-ac-hook.php (modified) (3 diffs)
-
trunk/includes/main-class.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wc-ac-hook.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wc-ac-hook/tags/1.4.3/includes/main-class.php
r2946596 r3465934 42 42 43 43 public function add_integration( $integrations ) { 44 include_once 'settings.php';44 include_once dirname(__FILE__).'/settings.php'; 45 45 $integrations[] = __NAMESPACE__ .'\WC_AC_Hook_Integration'; 46 46 return $integrations; … … 107 107 } 108 108 if ($valid_order) { 109 include_once 'sync-contact.php';109 include_once dirname(__FILE__).'/sync-contact.php'; 110 110 $api = new WC_AC_Hook_Sync($options); 111 111 } -
wc-ac-hook/tags/1.4.3/readme.txt
r2946596 r3465934 4 4 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&[email protected]¤cy_code=GBP&item_name=Donation+for+WC-AC+Hook 5 5 Requires at least: 4.1.1 6 Tested up to: 6. 26 Tested up to: 6.9 7 7 Requires PHP: 5.3 8 Stable tag: 1.4. 28 Stable tag: 1.4.3 9 9 License: GPLv2 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 11 12 Integrates WooCommerce with ActiveCampaign by adding or updating a contact on ActiveCampaign with specified tags, when an order is created at checkout .12 Integrates WooCommerce with ActiveCampaign by adding or updating a contact on ActiveCampaign with specified tags, when an order is created at checkout 13 13 14 14 == Description == … … 116 116 == Changelog == 117 117 118 = 1.4.3 = 119 * Fix to replace relative path with `dirname(__FILE__)` to ensure correct code included 120 118 121 = 1.4.2 = 119 122 * Fix to stop PHP notices -
wc-ac-hook/tags/1.4.3/wc-ac-hook.php
r2946596 r3465934 4 4 * Plugin URI: https://wordpress.org/plugins/wc-ac-hook/ 5 5 * Description: Integrates WooCommerce with ActiveCampaign by adding or updating a contact on ActiveCampaign with specified tags, when an order is created. 6 * Version: 1.4. 26 * Version: 1.4.3 7 7 * Author: Matthew Treherne 8 8 * Author URI: https://profiles.wordpress.org/mtreherne … … 10 10 * Requires at least: 4.1.1 11 11 * Requires PHP: 5.3 12 * WC tested up to: 7.9.012 * WC tested up to: 10.5.2 13 13 * License: GPL2 14 14 */ … … 48 48 add_action('before_woocommerce_init', function() { if (class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility('custom_order_tables', __FILE__, true); }); 49 49 50 include_once 'includes/main-class.php';50 include_once dirname(__FILE__).'/includes/main-class.php'; 51 51 52 52 ?> -
wc-ac-hook/trunk/includes/main-class.php
r2946596 r3465934 42 42 43 43 public function add_integration( $integrations ) { 44 include_once 'settings.php';44 include_once dirname(__FILE__).'/settings.php'; 45 45 $integrations[] = __NAMESPACE__ .'\WC_AC_Hook_Integration'; 46 46 return $integrations; … … 107 107 } 108 108 if ($valid_order) { 109 include_once 'sync-contact.php';109 include_once dirname(__FILE__).'/sync-contact.php'; 110 110 $api = new WC_AC_Hook_Sync($options); 111 111 } -
wc-ac-hook/trunk/readme.txt
r2946596 r3465934 4 4 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&[email protected]¤cy_code=GBP&item_name=Donation+for+WC-AC+Hook 5 5 Requires at least: 4.1.1 6 Tested up to: 6. 26 Tested up to: 6.9 7 7 Requires PHP: 5.3 8 Stable tag: 1.4. 28 Stable tag: 1.4.3 9 9 License: GPLv2 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 11 12 Integrates WooCommerce with ActiveCampaign by adding or updating a contact on ActiveCampaign with specified tags, when an order is created at checkout .12 Integrates WooCommerce with ActiveCampaign by adding or updating a contact on ActiveCampaign with specified tags, when an order is created at checkout 13 13 14 14 == Description == … … 116 116 == Changelog == 117 117 118 = 1.4.3 = 119 * Fix to replace relative path with `dirname(__FILE__)` to ensure correct code included 120 118 121 = 1.4.2 = 119 122 * Fix to stop PHP notices -
wc-ac-hook/trunk/wc-ac-hook.php
r2946596 r3465934 4 4 * Plugin URI: https://wordpress.org/plugins/wc-ac-hook/ 5 5 * Description: Integrates WooCommerce with ActiveCampaign by adding or updating a contact on ActiveCampaign with specified tags, when an order is created. 6 * Version: 1.4. 26 * Version: 1.4.3 7 7 * Author: Matthew Treherne 8 8 * Author URI: https://profiles.wordpress.org/mtreherne … … 10 10 * Requires at least: 4.1.1 11 11 * Requires PHP: 5.3 12 * WC tested up to: 7.9.012 * WC tested up to: 10.5.2 13 13 * License: GPL2 14 14 */ … … 48 48 add_action('before_woocommerce_init', function() { if (class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility('custom_order_tables', __FILE__, true); }); 49 49 50 include_once 'includes/main-class.php';50 include_once dirname(__FILE__).'/includes/main-class.php'; 51 51 52 52 ?>
Note: See TracChangeset
for help on using the changeset viewer.