mobilemuseumofart
Forum Replies Created
-
Hey, @darshanaw! Thanks for your reply. I fixed those errors, but I’m still running into certain emails not showing up. This is the error I get, “Mailer: Other SMTP SMTP Error: Could not authenticate.” Any ideas on what the issue could be?
Forum: Fixing WordPress
In reply to: Issues with Metabox codeOh, man, I made the rookie mistake with the quotes. Went back in and fixed those, and now everything is working again. Thank you so much, @corrinarusso!
Forum: Fixing WordPress
In reply to: Issues with Metabox codeI tried the patch for it, and I’m still getting the same error message.
I also tried suppressing the warnings, and that did not work either. I just got more error messages at the top of the page.
Forum: Plugins
In reply to: [User Specific Content] .Error Warning: count() on line 373Also having this same issue, but ours is located at
/home/XXXXXXX/public_html/wp-content/themes/XXXXX/wpalchemy/MetaBox.php on line 2126.
I managed to get it off of one page by switching the code from this
$cnt = count(!empty($this->meta[$n])?$this->meta[$n]:NULL);
to:
$cnt = (!empty($this->meta[$n]))? count($this->meta[$n]):0;This article helped me find that >> https://wordpress.org/support/topic/misuse-of-count-function-in-metabox-php/
But, we still having issues on other pages. Not sure how to fix it.