Plugin Directory

Changeset 2545821


Ignore:
Timestamp:
06/10/2021 07:47:31 PM (5 years ago)
Author:
earnware
Message:

Modified CCPA data that is visible to the subscriber.

Location:
earnware-connect/trunk
Files:
3 edited

Legend:

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

    r2541458 r2545821  
    2828== Changelog ==
    2929
     30= 1.0.65 =
     31* Modified CCPA data that is visible to the subscriber.
     32
    3033= 1.0.64 =
    3134* Modified CCPA form end point.
  • earnware-connect/trunk/public/class-wp-ew-public.php

    r2541458 r2545821  
    784784
    785785                jQuery.each(combinedcontactData, function (key, value) {
     786                    let fieldsToShow = ["firstName","lastName", "email", "ipAddress", "dateAdded"];
     787                    if (!fieldsToShow.includes(key))
     788                        return;
     789
    786790                    let keyTitleCase = key.replace( /([A-Z])/g, " $1" );
    787791                    keyTitleCase = keyTitleCase.charAt(0).toUpperCase() + keyTitleCase.slice(1);
     
    802806
    803807            }).fail(function(response) {
    804                 print_r(response);
     808                console.log(response);
    805809                window.location.href = error;
    806810            });
  • earnware-connect/trunk/wp-ew.php

    r2541458 r2545821  
    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.64
     19 * Version:           1.0.65
    2020 * Author:            Earnware Corporation
    2121 * Author URI:        https://earnware.com/about/
     
    3131}
    3232
    33 define( 'PLUGIN_NAME_VERSION', '1.0.64' );
     33define( 'PLUGIN_NAME_VERSION', '1.0.65' );
    3434
    3535/**
Note: See TracChangeset for help on using the changeset viewer.