Changeset 2066203
- Timestamp:
- 04/09/2019 11:16:09 PM (6 years ago)
- Location:
- activecampaign-subscription-forms/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
activecampaign-subscription-forms/trunk/README.md
r2054237 r2066203 72 72 ## Changelog 73 73 74 ### 7.1.1 75 * Include our own host header on requests. 76 74 77 ### 7.1 75 78 -
activecampaign-subscription-forms/trunk/activecampaign-api-php/Connector.class.php
r1457085 r2066203 205 205 // Use native WordPress HTTP method. 206 206 // 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 ); 208 209 209 210 // If the response code is actually based off WP_ERROR Send the error back instead; -
activecampaign-subscription-forms/trunk/activecampaign.php
r2054237 r2066203 3 3 Plugin Name: ActiveCampaign - Forms, Site Tracking, Live Chat 4 4 Plugin URI: http://www.activecampaign.com/apps/wordpress 5 Description: Allows you to add ActiveCampaign contact forms and live chatto 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>.5 Description: 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>. 6 6 Author: ActiveCampaign 7 Version: 7.1 7 Version: 7.1.1 8 8 Author URI: http://www.activecampaign.com 9 9 */ … … 42 42 ## version 6.3: Added site tracking options for GDPR 43 43 ## 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. 45 46 46 47 define("ACTIVECAMPAIGN_URL", ""); -
activecampaign-subscription-forms/trunk/readme.txt
r2054237 r2066203 77 77 == Changelog == 78 78 79 = 7.1.1 = 80 * Include our own host header on requests. 81 79 82 = 7.1 = 80 83 * Update plug-in to enable Live Chat.
Note: See TracChangeset
for help on using the changeset viewer.