Plugin Directory

Changeset 1227502


Ignore:
Timestamp:
08/21/2015 07:02:00 PM (11 years ago)
Author:
squidMark
Message:
  • updated 'tested up to' version to 4.3
  • import Google remarketing pixel for BoostSuite Ads comarketing feature
Location:
boostsuite-tracking-code/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • boostsuite-tracking-code/trunk/BoostSuiteWP-tracking.php

    r1158903 r1227502  
    44   Plugin URI: http://boostsuite.com
    55   Description: This plugin will insert the BoostSuite tracking code on all non-admin pages.
    6    Version: 1.4
     6   Version: 1.5
    77   Author: BoostSuite
    88   Author URI: http://boostsuite.com
     
    1515    /*
    1616     * Boostsuite Tracker JS widget
    17      * CloudFront URL: http://dh05donu16isw.cloudfront.net/tracker/tracker.js
    18      * @version 0.4
     17     * CloudFront URL: http://d2so4705rl485y.cloudfront.net/widgets/tracker/tracker.js
     18     * @version 0.5
    1919    */
     20
     21    /* Measure Audience Characteristics for BoostSuite Article Exchange Comarketing Feature */
     22
    2023    (function(){
    2124        /**
     
    167170            headingScript.src = boost.getBaseUrl() + "/widget/headings/get?url="+escape(window.location.toString())+"&referrer="+escape(document.referrer) + (_bsc.suffix ? "&"+_bsc.suffix : "");
    168171            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
    169197        });
    170198    })();
  • boostsuite-tracking-code/trunk/readme.txt

    r1158903 r1227502  
    22Contributors: squidMark
    33Requires at least: 1.2.1
    4 Tested up to: 4.2
    5 Stable tag: 1.4
     4Tested up to: 4.3
     5Stable tag: 1.5
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1717Please 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.
    1818
    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>
    2121> -Cheryl Crouse, DLS Software Studios, [www.dlssoftwarestudios.com](http://www.dlssoftwarestudios.com)
    2222
     
    3131
    3232== Changelog ==
     33
     34= 1.5 =
     35* updated 'tested up to' version to 4.3
     36* import Google remarketing pixel for BoostSuite Ads comarketing feature
    3337
    3438= 1.4 =
Note: See TracChangeset for help on using the changeset viewer.