Plugin Support
qtwrk
(@qtwrk)
this is known compatibility issue on ESI
if you need to use query monitor , then please disable ESI, and enable it back if needed , after you have done with QM
Thread Starter
monoor
(@monoor)
There is no way to turn off ESI for the admin role?
Filter or…?
Plugin Support
qtwrk
(@qtwrk)
unfortunately no
there are 2 ways to manipulate some conf for our plugin , programatically
one way is via wp-config.php , there is some constant can be defined for certain action , I can disable ESI here by define a certain constant, but at this stage, you can not detect user role because the wp is not initialized yet.
another way is more traditional via theme functions.php or code snippet, there is some API can be used to manipulate the configuration , but at this stage, the ESI is already initialized which is too late already.
Thread Starter
monoor
(@monoor)
So we have to wait for LS C update. Is this a new known problem? Or has it been around for a long time and has not been addressed?
To predict the time to fix the problem…
Plugin Support
qtwrk
(@qtwrk)
remove_action( 'wp_body_open', 'wp_admin_bar_render', 0 );
please try this , to your functions.php , purge all and check how it goes
Thread Starter
monoor
(@monoor)
It worked and the test was successful, thank you
Just a few questions:
1- That this will not affect the performance of caching on users?
2- Will the permanent update to fix this problem interfere with this code?
3- Will the time for permanent update to fix this problem come soon or late?