Changeset 2545821
- Timestamp:
- 06/10/2021 07:47:31 PM (5 years ago)
- Location:
- earnware-connect/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (1 diff)
-
public/class-wp-ew-public.php (modified) (2 diffs)
-
wp-ew.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
earnware-connect/trunk/README.txt
r2541458 r2545821 28 28 == Changelog == 29 29 30 = 1.0.65 = 31 * Modified CCPA data that is visible to the subscriber. 32 30 33 = 1.0.64 = 31 34 * Modified CCPA form end point. -
earnware-connect/trunk/public/class-wp-ew-public.php
r2541458 r2545821 784 784 785 785 jQuery.each(combinedcontactData, function (key, value) { 786 let fieldsToShow = ["firstName","lastName", "email", "ipAddress", "dateAdded"]; 787 if (!fieldsToShow.includes(key)) 788 return; 789 786 790 let keyTitleCase = key.replace( /([A-Z])/g, " $1" ); 787 791 keyTitleCase = keyTitleCase.charAt(0).toUpperCase() + keyTitleCase.slice(1); … … 802 806 803 807 }).fail(function(response) { 804 print_r(response);808 console.log(response); 805 809 window.location.href = error; 806 810 }); -
earnware-connect/trunk/wp-ew.php
r2541458 r2545821 17 17 * Plugin URI: https://www.earnware.com/wordpress/plugins/earnware-connect 18 18 * Description: A plugin to connect any wordpress site to the Earnware Dashboard. 19 * Version: 1.0.6 419 * Version: 1.0.65 20 20 * Author: Earnware Corporation 21 21 * Author URI: https://earnware.com/about/ … … 31 31 } 32 32 33 define( 'PLUGIN_NAME_VERSION', '1.0.6 4' );33 define( 'PLUGIN_NAME_VERSION', '1.0.65' ); 34 34 35 35 /**
Note: See TracChangeset
for help on using the changeset viewer.