Plugin Directory

Changeset 3465934


Ignore:
Timestamp:
02/20/2026 04:31:52 PM (33 hours ago)
Author:
mtreherne
Message:

Release of Version 1.4.3

Location:
wc-ac-hook
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • wc-ac-hook/tags/1.4.3/includes/main-class.php

    r2946596 r3465934  
    4242
    4343    public function add_integration( $integrations ) {
    44         include_once 'settings.php';
     44        include_once dirname(__FILE__).'/settings.php';
    4545        $integrations[] = __NAMESPACE__ .'\WC_AC_Hook_Integration';
    4646        return $integrations;
     
    107107        }
    108108        if ($valid_order) {
    109             include_once 'sync-contact.php';
     109            include_once dirname(__FILE__).'/sync-contact.php';
    110110            $api = new WC_AC_Hook_Sync($options);
    111111        }
  • wc-ac-hook/tags/1.4.3/readme.txt

    r2946596 r3465934  
    44Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&[email protected]&currency_code=GBP&item_name=Donation+for+WC-AC+Hook
    55Requires at least: 4.1.1
    6 Tested up to: 6.2
     6Tested up to: 6.9
    77Requires PHP: 5.3
    8 Stable tag: 1.4.2
     8Stable tag: 1.4.3
    99License: GPLv2
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1111
    12 Integrates WooCommerce with ActiveCampaign by adding or updating a contact on ActiveCampaign with specified tags, when an order is created at checkout.
     12Integrates WooCommerce with ActiveCampaign by adding or updating a contact on ActiveCampaign with specified tags, when an order is created at checkout
    1313
    1414== Description ==
     
    116116== Changelog ==
    117117
     118= 1.4.3 =
     119* Fix to replace relative path with `dirname(__FILE__)` to ensure correct code included
     120
    118121= 1.4.2 =
    119122* Fix to stop PHP notices
  • wc-ac-hook/tags/1.4.3/wc-ac-hook.php

    r2946596 r3465934  
    44 * Plugin URI: https://wordpress.org/plugins/wc-ac-hook/
    55 * 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.2
     6 * Version: 1.4.3
    77 * Author: Matthew Treherne
    88 * Author URI: https://profiles.wordpress.org/mtreherne
     
    1010 * Requires at least: 4.1.1
    1111 * Requires PHP: 5.3
    12  * WC tested up to: 7.9.0
     12 * WC tested up to: 10.5.2
    1313 * License: GPL2
    1414*/
     
    4848add_action('before_woocommerce_init', function() { if (class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility('custom_order_tables', __FILE__, true); });
    4949
    50 include_once 'includes/main-class.php';
     50include_once dirname(__FILE__).'/includes/main-class.php';
    5151
    5252?>
  • wc-ac-hook/trunk/includes/main-class.php

    r2946596 r3465934  
    4242
    4343    public function add_integration( $integrations ) {
    44         include_once 'settings.php';
     44        include_once dirname(__FILE__).'/settings.php';
    4545        $integrations[] = __NAMESPACE__ .'\WC_AC_Hook_Integration';
    4646        return $integrations;
     
    107107        }
    108108        if ($valid_order) {
    109             include_once 'sync-contact.php';
     109            include_once dirname(__FILE__).'/sync-contact.php';
    110110            $api = new WC_AC_Hook_Sync($options);
    111111        }
  • wc-ac-hook/trunk/readme.txt

    r2946596 r3465934  
    44Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&[email protected]&currency_code=GBP&item_name=Donation+for+WC-AC+Hook
    55Requires at least: 4.1.1
    6 Tested up to: 6.2
     6Tested up to: 6.9
    77Requires PHP: 5.3
    8 Stable tag: 1.4.2
     8Stable tag: 1.4.3
    99License: GPLv2
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1111
    12 Integrates WooCommerce with ActiveCampaign by adding or updating a contact on ActiveCampaign with specified tags, when an order is created at checkout.
     12Integrates WooCommerce with ActiveCampaign by adding or updating a contact on ActiveCampaign with specified tags, when an order is created at checkout
    1313
    1414== Description ==
     
    116116== Changelog ==
    117117
     118= 1.4.3 =
     119* Fix to replace relative path with `dirname(__FILE__)` to ensure correct code included
     120
    118121= 1.4.2 =
    119122* Fix to stop PHP notices
  • wc-ac-hook/trunk/wc-ac-hook.php

    r2946596 r3465934  
    44 * Plugin URI: https://wordpress.org/plugins/wc-ac-hook/
    55 * 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.2
     6 * Version: 1.4.3
    77 * Author: Matthew Treherne
    88 * Author URI: https://profiles.wordpress.org/mtreherne
     
    1010 * Requires at least: 4.1.1
    1111 * Requires PHP: 5.3
    12  * WC tested up to: 7.9.0
     12 * WC tested up to: 10.5.2
    1313 * License: GPL2
    1414*/
     
    4848add_action('before_woocommerce_init', function() { if (class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility('custom_order_tables', __FILE__, true); });
    4949
    50 include_once 'includes/main-class.php';
     50include_once dirname(__FILE__).'/includes/main-class.php';
    5151
    5252?>
Note: See TracChangeset for help on using the changeset viewer.