• Hi all,
    This plugin is really fine but there’s one problem that AC Team doesn’t fix for a long time (sadly): the user email for the tracking code is not set up properly, so you’ll need to apply the fix by yourself:
    Inside the file “site_tracking.js” inside the plugin’s directory, replace those lines (7-9):

    if (typeof trackcmp_email !== 'undefined') {
    	pgo('setEmail', trackcmp_email);
    }

    with this:

    if (typeof php_data.user_email !== 'undefined') {
    	pgo('setEmail', php_data.user_email);
    }

    Now the user tracking will work.
    Good luck! ??

  • The topic ‘User email sync inside tracking code’ is closed to new replies.