Viewing 4 reply threads
You must be logged in to reply to this topic.
Hi
My error log is filled with thousands of the same entry as below.
My Hosts are stating this is causing my cpu overload.
Please advise.
Thanks in advance
PHP Warning: Attempt to assign property of non-object in /home/localpub/public_html/wp-content/themes/specular/includes/view/menu-small.php on line 114
Hello,
This is strange. You do not have any error in your site. Please set the debug mode to false, in file wp-config.php:
define('WP_DEBUG', false);
See if the warning persists. Let us know.
Best regards!
Hi
Debug is off. I think it is a memory issue.
Thanks
Hi
I am still getting this in my error log. any news?
Hello,
Sorry for the late reply.
Please try this, go to file includes/view/menu-small.php and find this line:
if(!isset($args->max_columns)) $args->max_columns = 6;
edit to this:
if(!isset($args->max_columns) && is_object($args->max_columns)) $args->max_columns = 6;
Save.
Let us know.
Best regards!
You must be logged in to reply to this topic.