Conversation
supportYou guys are unbelievable. This plugin outputs the admin email many times in the source code, for example in etn-public-js-extra as "admin_email":"admin@website.com" . How dare you?
Hi @swinggraphics, We apologize for the frustration this has caused. We completely understand your concern and appreciate you bringing it to our attention. As a temporary workaround, you can prevent the admin email from being exposed by adding the following code to your active theme’s functions.php file : add_filter( 'etn_locale_vars', function ( $data ) { $data['admin_email'] = 'hidden'; return $data; },99 ); This will remove the admin email from the public script output immediately. We’ve already fixed the issue, and this will be handled directly inside Eventin in our next release , so no manual changes will be needed going forward. If you have any questions or need help applying this, feel free to reach out. Our team will be happy to assist. Thanks for your patience and understanding. Best Regards, M Mahbub
Hi @swinggraphics, We apologize for the frustration this has caused. We completely understand your concern and appreciate you bringing it to our attention. As a temporary workaround, you can prevent the admin email from being exposed by adding the following code to your active theme’s functions.php file : add_filter( 'etn_locale_vars', function ( $data ) { $data['admin_email'] = 'hidden'; return $data; },99 ); This will remove the admin email from the public script output immediately. We’ve already fixed the issue, and this will be handled directly inside Eventin in our next release , so no manual changes will be needed going forward. If you have any questions or need help applying this, feel free to reach out. Our team will be happy to assist. Thanks for your patience and understanding. Best Regards, M Mahbub