Plugin Directory

Changeset 2080144


Ignore:
Timestamp:
05/03/2019 08:24:29 PM (7 years ago)
Author:
earnware
Message:

Made legacy sourceId, placementId form element posts also apply values to utm_source, utm_placement respectively.

Location:
earnware-connect/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • earnware-connect/trunk/README.txt

    r2080108 r2080144  
    3232
    3333== Changelog ==
     34
     35= 1.0.42 =
     36* Made legacy sourceId, placementId form element posts also apply values to utm_source, utm_placement respectively.
    3437
    3538= 1.0.41 =
  • earnware-connect/trunk/public/class-wp-ew-public.php

    r2080108 r2080144  
    406406                data.sourceId = EW.getItem("utm_source") || '{$default_utm_source}' || window.location.hostname;
    407407
     408                data.utm_placement = data.placementId;
     409                data.utm_source = data.sourceId;
     410
    408411                var protected = '${protected}'.split(',');
    409412
  • earnware-connect/trunk/wp-ew.php

    r2080108 r2080144  
    1717 * Plugin URI:        https://www.earnware.com/wordpress/plugins/earnware-connect
    1818 * Description:       A plugin to connect any wordpress site to the Earnware Dashboard.
    19  * Version:           1.0.41
     19 * Version:           1.0.42
    2020 * Author:            Earnware Corporation
    2121 * Author URI:        https://earnware.com/about/
     
    3131}
    3232
    33 define( 'PLUGIN_NAME_VERSION', '1.0.41' );
     33define( 'PLUGIN_NAME_VERSION', '1.0.42' );
    3434
    3535/**
Note: See TracChangeset for help on using the changeset viewer.