Changeset 1227502
- Timestamp:
- 08/21/2015 07:02:00 PM (11 years ago)
- Location:
- boostsuite-tracking-code/trunk
- Files:
-
- 2 edited
-
BoostSuiteWP-tracking.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
boostsuite-tracking-code/trunk/BoostSuiteWP-tracking.php
r1158903 r1227502 4 4 Plugin URI: http://boostsuite.com 5 5 Description: This plugin will insert the BoostSuite tracking code on all non-admin pages. 6 Version: 1. 46 Version: 1.5 7 7 Author: BoostSuite 8 8 Author URI: http://boostsuite.com … … 15 15 /* 16 16 * Boostsuite Tracker JS widget 17 * CloudFront URL: http://d h05donu16isw.cloudfront.net/tracker/tracker.js18 * @version 0. 417 * CloudFront URL: http://d2so4705rl485y.cloudfront.net/widgets/tracker/tracker.js 18 * @version 0.5 19 19 */ 20 21 /* Measure Audience Characteristics for BoostSuite Article Exchange Comarketing Feature */ 22 20 23 (function(){ 21 24 /** … … 167 170 headingScript.src = boost.getBaseUrl() + "/widget/headings/get?url="+escape(window.location.toString())+"&referrer="+escape(document.referrer) + (_bsc.suffix ? "&"+_bsc.suffix : ""); 168 171 document.getElementsByTagName("head")[0].appendChild(headingScript); 172 173 /* Import Google Remarketing Pixel for BoostSuite Ads Comarketing Feature */ 174 175 googleScript = document.createElement("script"); 176 googleScript.src = 'https://www.googleadservices.com/pagead/conversion_async.js'; 177 document.getElementsByTagName("head")[0].appendChild(googleScript); 178 179 var pollInterval = 1000; 180 var pollCount = 0; 181 var pollLimit = 10; 182 var setConversionValues = function() { 183 if (window.google_trackConversion) { 184 window.google_trackConversion({ 185 google_conversion_id: 948124098, 186 google_remarketing_only: true 187 }); 188 } else { 189 pollCount++; 190 if (pollCount < pollLimit) { 191 window.setTimeout(setConversionValues, pollInterval); 192 } 193 } 194 } 195 window.setTimeout(setConversionValues, pollInterval); 196 169 197 }); 170 198 })(); -
boostsuite-tracking-code/trunk/readme.txt
r1158903 r1227502 2 2 Contributors: squidMark 3 3 Requires at least: 1.2.1 4 Tested up to: 4. 25 Stable tag: 1. 44 Tested up to: 4.3 5 Stable tag: 1.5 6 6 License: GPLv2 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 17 17 Please note that the BoostSuite plug-in sends data about your website and its visitors back to the BoostSuite service so that this data can be analyzed and turned into suggestions in your BoostSuite account. This data includes information about each website visitor including their IP address, the URL of the page they are viewing, specific content they are viewing, and the search keywords they used to reach the website. This plug-in also requests data from the BoostSuite service which allows BoostSuite to customize the on-page experience when you run content tests for your visitors through BoostSuite. 18 18 19 > *“Like most small companies, we don’t have a large marketing budget. BoostSuite put together great suggestions for our site that were easy to understand and implement. This product is a definite must for small companies looking to increase their web presence.”* 20 > 19 > *“Like most small companies, we don’t have a large marketing budget. BoostSuite put together great suggestions for our site that were easy to understand and implement. This product is a definite must for small companies looking to increase their web presence.”* 20 > 21 21 > -Cheryl Crouse, DLS Software Studios, [www.dlssoftwarestudios.com](http://www.dlssoftwarestudios.com) 22 22 … … 31 31 32 32 == Changelog == 33 34 = 1.5 = 35 * updated 'tested up to' version to 4.3 36 * import Google remarketing pixel for BoostSuite Ads comarketing feature 33 37 34 38 = 1.4 =
Note: See TracChangeset
for help on using the changeset viewer.