Changeset 1954787
- Timestamp:
- 10/10/2018 09:46:53 PM (7 years ago)
- Location:
- 4ecps-webforms/trunk
- Files:
-
- 2 edited
-
4ECPS.php (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
4ecps-webforms/trunk/4ECPS.php
r1947583 r1954787 4 4 * Plugin Name: 4ECPS Webforms 5 5 * Description: This adds the 4ECPS Marketing webforms to your website. 6 * Version: 0.1.7 06 * Version: 0.1.71 7 7 * Author: jumpdemand 8 8 * Author URI: http://www.JumpDEMAND.me … … 13 13 namespace ecps; 14 14 15 define(__NAMESPACE__.'\ACTIVEDEMAND_VER', '0.1.7 0');15 define(__NAMESPACE__.'\ACTIVEDEMAND_VER', '0.1.71'); 16 16 define(__NAMESPACE__."\PLUGIN_VENDOR", "4ECPS"); 17 17 define(__NAMESPACE__."\PLUGIN_VENDOR_LINK", "https://4ecps.com/"); … … 258 258 register_setting(PREFIX.'_options', PREFIX.'_show_tinymce'); 259 259 register_setting(PREFIX.'_options', PREFIX.'_server_side'); 260 register_setting(PREFIX.'_options', PREFIX.'_ script_url');260 register_setting(PREFIX.'_options', PREFIX.'_v2_script_url'); 261 261 } 262 262 … … 264 264 function activedemand_enqueue_scripts() 265 265 { 266 $script_url = get_option(PREFIX.'_ script_url');266 $script_url = get_option(PREFIX.'_v2_script_url'); 267 267 if (!isset($script_url) || "" == $script_url) { 268 268 $activedemand_appkey = activedemand_api_key(); 269 269 if ("" != $activedemand_appkey) { 270 270 $script_url = activedemand_getHTML("https://api.activedemand.com/v1/script_url", 10); 271 update_option(PREFIX.'_ script_url', $script_url);271 update_option(PREFIX.'_v2_script_url', $script_url); 272 272 273 273 } … … 881 881 return "$url' async defer"; 882 882 } 883 if (TRUE == strpos($url, ' ad_load.js'))883 if (TRUE == strpos($url, '/load.js')) 884 884 { 885 885 return "$url' async defer"; -
4ecps-webforms/trunk/readme.txt
r1947582 r1954787 3 3 Tags: tracking web form, plugin 4 4 Requires at least: 2.8 5 Tested up to: 4.9. 66 Stable tag: 0.1.7 05 Tested up to: 4.9.8 6 Stable tag: 0.1.71 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 38 38 39 39 == Changelog == 40 = 0.1.71 = 41 Renamed script 40 42 = 0.1.70 = 41 43 Updated LP code
Note: See TracChangeset
for help on using the changeset viewer.