Thank you for your time and effort.
Looking forward to the next release !
2.0.5 committed…
If you would, let me know if this addresses the lines 4010, 4011 notices?
When running PHP8.0 I get the error message shown in the attachment.
When running PHP7.4 the widget is empty, no (error) message at all
https://klankschalen-ermelo.nl/errormessage.png
Any console/WP_DEBUG notices? (like a knee-jerk response ;))
Can we verify that the (ks_quotes_llama) table has the column “category”?
-
This reply was modified 3 years ago by
oooorgle.
I wish I knew how this person corrected their problem at this point. It now sounds exactly like what she describes… but her site is now again working fine, but she just seems to have disappeared so I have nothing to work with there atm.
https://wordpress.org/support/topic/image-and-quote-are-not-showing/
So far I cannot reproduce any problem or error… PHP 7.4 or PHP 8.0 (ea-php80). Perhaps any change when on 7.4 and a different theme? I can’t test the theme so I’m completely guessing now.
I have another site running the same theme. I will install the plug-in on that site, see what happens.
That will be next week, I’m heaving a little break.
In php 8.1, I was able to reproduce some errors similar to yours preg_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in wp-includes/kses.php:1685
In kses.php when I added ?? '' so that it will return a string instead of null,
before:
$string = preg_replace( '/[\x00-\x08\x0B\x0C\x0E-\x1F]/', '', $string );
after:
$string = preg_replace( '/[\x00-\x08\x0B\x0C\x0E-\x1F]/', '', $string ?? '' );
all the errors for that function call (10) went away. But then, that’s a core WordPress file so it’s a dirty band-aid at best.