Home › Forums › Pro Support › PHP Error › Reply To: PHP Error
November 18, 2019 at 5:11 pm
#11934
Keymaster
Hi there,
Thanks for reporting this.
Can you try replacing this:
if ( count( $post_meta_users ) != 0 ) {
With this?:
if ( count( (array) $post_meta_users ) != 0 ) {
Does it fix the warning?