initialshock
Forum Replies Created
-
Hi wpvince,
I’ve added a temporary fix…
Change line 100 from:
if( preg_match(‘/,/’, $defaults[‘orderby’]) ) {To:
if(!is_array($defaults[‘orderby’]) && preg_match(‘/,/’, $defaults[‘orderby’]) ) {As this code checks if $defaults[‘orderby’] is a string split by commas. If so, it then converts it to a php array. But it doesn’t need to do this if it is an array already, hence why I added the extra check.
It appears so, but a new problem has arisen. On my events page in the front-end, I am getting this error:
Warning: preg_match() expects parameter 2 to be string, array given in /var/www/vhosts/path/to/my/blog/wp-content/plugins/events-manager/classes/object.php on line 100
Any ideas what’s up?
I’m also having this problem. Any idea when the fix will come?
Thanks 🙂Forum: Fixing WordPress
In reply to: RSS feed not fully displayingHmm, still no joy. I tried switching to the default theme with & without all plugins deactivated. But still the same issue:
http://www.my-carleasing.com/carleasing/feed
I noticed that some other users seem to be having similar problems, but unclear if they fixed them (and how). Trying to contact them now.
Any other ideas?
Forum: Fixing WordPress
In reply to: RSS feed not fully displayingHi Samuel,
Thanks for your reply. The validator just tells me what I already know though unfortunately 🙁
I deactivated all my plugins & the issue is still there… this is a strange one…