Plugin Directory

Changeset 2121029


Ignore:
Timestamp:
07/10/2019 08:33:58 PM (7 years ago)
Author:
ferdev
Message:

Update trunk to 1.4.10

Location:
woocommerce-google-analytics-integration/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • woocommerce-google-analytics-integration/trunk/changelog.txt

    r2070026 r2121029  
    11*** Changelog ***
    22
     3= 1.4.10 - 2019-07-10 =
     4* Fix - Ensure universal analytics pageview doesn’t occur if standard tracking is disabled.
     5 
    36= 1.4.9 - 2019-04-16 =
    47* Tweak - WC 3.6 compatibility.
  • woocommerce-google-analytics-integration/trunk/includes/class-wc-google-analytics-js.php

    r2044200 r2121029  
    198198     */
    199199    public static function universal_analytics_footer() {
    200         wc_enqueue_js( "" . self::tracker_var() . "( 'send', 'pageview' ); ");
     200        if ( 'yes' === self::get( 'ga_standard_tracking_enabled' ) ) {
     201            wc_enqueue_js( "" . self::tracker_var() . "( 'send', 'pageview' ); " );
     202        }
    201203    }
    202204
  • woocommerce-google-analytics-integration/trunk/languages/woocommerce-google-analytics-integration.pot

    r2070026 r2121029  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WooCommerce Google Analytics Integration 1.4.9\n"
     5"Project-Id-Version: WooCommerce Google Analytics Integration 1.4.10\n"
    66"Report-Msgid-Bugs-To: "
    77"https://github.com/woocommerce/woocommerce-google-analytics-integration/"
    88"issues\n"
    9 "POT-Creation-Date: 2019-04-16 23:15:30+00:00\n"
     9"POT-Creation-Date: 2019-07-10 20:15:32+00:00\n"
    1010"MIME-Version: 1.0\n"
    1111"Content-Type: text/plain; charset=utf-8\n"
  • woocommerce-google-analytics-integration/trunk/readme.txt

    r2070026 r2121029  
    44Requires at least: 3.8
    55Tested up to: 5.1
    6 Stable tag: 1.4.9
     6Stable tag: 1.4.10
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    6969== Changelog ==
    7070
     71= 1.4.10 - 2019-07-10 =
     72* Fix - Ensure universal analytics pageview doesn’t occur if standard tracking is disabled.
     73
    7174= 1.4.9 - 2019-04-16 =
    7275* Tweak - WC 3.6 compatibility.
  • woocommerce-google-analytics-integration/trunk/woocommerce-google-analytics-integration.php

    r2070026 r2121029  
    66 * Author: WooCommerce
    77 * Author URI: https://woocommerce.com
    8  * Version: 1.4.9
     8 * Version: 1.4.10
    99 * WC requires at least: 2.1
    1010 * WC tested up to: 3.6
     
    3030         * @var string
    3131         */
    32         const VERSION = '1.4.9';
     32        const VERSION = '1.4.10';
    3333
    3434        /**
Note: See TracChangeset for help on using the changeset viewer.