I am seeing this error in my PHP error log:
[18-Mar-2022 17:13:28 UTC] PHP Warning: Use of undefined constant EE_FRONT_AJAX – assumed ‘EE_FRONT_AJAX’ (this will throw an Error in a future version of PHP) in /****/****/****/*****/wp-content/plugins/eea-wp-user-integration/EED_WP_Users_SPCO.module.php on line 121
Sure, in /eea-wp-user-integration/EED_WP_Users_SPCO.module.php
Line 121 will be something like:
if( EE_FRONT_AJAX) {
Change that to be:
if (defined('EE_FRONT_AJAX') && EE_FRONT_AJAX) {
That should prevent the warning.
Viewing 3 reply threads
The support post ‘PHP error message’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.