Plugin Directory

Changeset 2066203


Ignore:
Timestamp:
04/09/2019 11:16:09 PM (6 years ago)
Author:
activecampaign
Message:

Version 7.1.1

Location:
activecampaign-subscription-forms/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • activecampaign-subscription-forms/trunk/README.md

    r2054237 r2066203  
    7272## Changelog
    7373
     74### 7.1.1
     75* Include our own host header on requests.
     76
    7477### 7.1
    7578
  • activecampaign-subscription-forms/trunk/activecampaign-api-php/Connector.class.php

    r1457085 r2066203  
    205205            // Use native WordPress HTTP method.
    206206            // We only need GET support because our WordPress plugin doesn't currently make any other type of requests.
    207             $response = wp_remote_get($url);
     207            $args = array( 'headers' => array( 'user-agent' => 'ActiveCampaign WordPress Plugin' ) );
     208            $response = wp_remote_get( $url, $args );
    208209
    209210            // If the response code is actually based off WP_ERROR Send the error back instead;
  • activecampaign-subscription-forms/trunk/activecampaign.php

    r2054237 r2066203  
    33Plugin Name: ActiveCampaign - Forms, Site Tracking, Live Chat
    44Plugin URI: http://www.activecampaign.com/apps/wordpress
    5 Description: Allows you to add ActiveCampaign contact forms and live chat to any post, page, or sidebar. Also allows you to embed <a href="http://www.activecampaign.com/help/site-event-tracking/" target="_blank">ActiveCampaign site tracking</a> code in your pages. To get started, please activate the plugin and add your <a href="http://www.activecampaign.com/help/using-the-api/" target="_blank">API credentials</a> in the <a href="options-general.php?page=activecampaign">plugin settings</a>.
     5Description: Allows you to add ActiveCampaign contact forms to any post, page, or sidebar. Also allows you to embed <a href="http://www.activecampaign.com/help/site-event-tracking/" target="_blank">ActiveCampaign site tracking</a> code in your pages. To get started, please activate the plugin and add your <a href="http://www.activecampaign.com/help/using-the-api/" target="_blank">API credentials</a> in the <a href="options-general.php?page=activecampaign">plugin settings</a>.
    66Author: ActiveCampaign
    7 Version: 7.1
     7Version: 7.1.1
    88Author URI: http://www.activecampaign.com
    99*/
     
    4242## version 6.3: Added site tracking options for GDPR
    4343## version 7.0: Force upgrade prompt for users on 6.25
    44 ## version 7.1: Enable site tracking to have page visits tracked to ActiveCampaign.
     44## version 7.1: Update Site Tracking snippet to route through Prism.
     45## version 7.1.1: Include our own host header on requests.
    4546
    4647define("ACTIVECAMPAIGN_URL", "");
  • activecampaign-subscription-forms/trunk/readme.txt

    r2054237 r2066203  
    7777== Changelog ==
    7878
     79= 7.1.1 =
     80* Include our own host header on requests.
     81
    7982= 7.1 =
    8083* Update plug-in to enable Live Chat.
Note: See TracChangeset for help on using the changeset viewer.