Plugin Directory

Changeset 675763


Ignore:
Timestamp:
03/03/2013 07:36:40 PM (13 years ago)
Author:
segmentio
Message:

0.4.3

Location:
segmentio/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • segmentio/trunk/analytics-wordpress.php

    r670644 r675763  
    55Description: The hassle-free way to integrate any analytics service into your Wordpress site.
    66
    7 Version: 0.4.2
     7Version: 0.4.3
    88License: GPLv2
    99
     
    5353
    5454    const SLUG    = 'analytics';
    55     const VERSION = '0.4.2';
     55    const VERSION = '0.4.3';
    5656
    5757    private $option   = 'analytics_wordpress_options';
     
    321321        if (!isset($track)) return false;
    322322
     323        // All of these are checking for pages, and we don't want that to throw
     324        // off Google Analytics's bounce rate, so mark them `noninteraction`.
     325        $track['properties']['noninteraction'] = true;
     326
    323327        // Clean out empty properties before sending it back.
    324328        $track['properties'] = $this->clean_array($track['properties']);
  • segmentio/trunk/readme.txt

    r670644 r675763  
    44Requires at least: 3.4
    55Tested up to: 3.5.1
    6 Stable tag: 0.4.2
     6Stable tag: 0.4.3
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5252== Changelog ==
    5353
     54= 0.4.3 =
     55* Made our page view events `noninteraction` in Google Analytics.
     56
    5457= 0.4.0 =
    5558* Added settings to turn off automatic event tracking.
Note: See TracChangeset for help on using the changeset viewer.