Thank you for the error log. I can’t access the plugin since it’s gated behind a paywall, but the log immediately tells me what’s wrong.
If you could be so kind as to forward this issue to their developers, please tell them to look into its use of class_exists()
: It has a second parameter that prevents the autoloaders from invoking. Since we updated the class structure, the autoloader will look for a class that no longer exists. Setting the second parameter to false
would resolve the issue immediately.
Still, we never advertised the class they check for as part of the public API, so the entire class check should be exchanged for something else. Deducing from the error, they should test for function_exists( 'tsf' )
and work only via that function directly: tsf()
has multiple safeguards to prevent fatal errors like the one you’re experiencing via magic methods and something I called Static_Deprecator
.
If they want more immediate pointers, they can always contact me via https://tsf.fyi/contact. Thank you!