Hi @misterfu,
Sorry for the inconvenience caused. Need to check this issue. For further investigation please create a support ticket through this link: https://wpdeveloper.net/support/new-ticket/
Our Technical Support team will get back to you. Thank you.
@misterfu,
Hi, there. When exactly are you seeing this error by the way?
I have just tried this on a Fresh Setup on PHP 8.0 actually and didn’t get this error. So, maybe i am missing something. Can you please share a bit more details on how to reproduce this?
And, yes, we are not yet fully compatible with PHP 8.0. But still not getting this error though.
Besides, instead of updating the plugin, can you please delete it and install it freshly on your site & let me know how it goes?
For further investigation, you can also contact our support team through the link provided above.
Thank you!
Thanks @rafinkhan – I discovered this when I upgraded the plugin from an old version to the most recent one. After I have re-installed it from scratch I could not longer see the error.
Hi @misterfu,
Glad to know that your issue is all sorted out now. Cheers!
Have a nice day!
Hi @rafinkhan – sorry, error appears again. Very strange, it’s now happening every time when I’m editing a post and then try to save it.
But hey… at least it’s now reproducible and I can confirm that manually applying this change fixed it:
- if (\method_exists($current_screen, 'is_block_editor')) {
+ if ((\is_string($current_screen) || \is_object($current_screen)) && \method_exists($current_screen, 'is_block_editor')) {
-
This reply was modified 1 month, 2 weeks ago by
misterfu.