Which version of NGFB are you using?
Is this only on the front-end, or back-end as well?
Only on the home page of the blog, or all pages?
Are you seeing any other errors in the web server’s error log, or WordPress debug.log (assuming you’ve enabled the WP_DEBUG constant)?
I need to ask all these questions because I don’t see how line 227 in that file in the current version (8.33.1-1) could possibly create that error.
js.
Thread Starter
james
(@westbury84)
Which version of NGFB are you using?
Ans) Version 8.33.1-1, FYI… the problem happen when I upgraded 1 week ago
Is this only on the front-end, or back-end as well?(http://www.executivesellers.com/blog/do-i-pay-less-taxes-when-i-buy-a-nome/)
Ans) I can see the posts when I type the link directly
Only on the home page of the blog, or all pages?
ANS) just looks like the home page , if I access the blog via the menu system. It is located under (ABOUT US)
Are you seeing any other errors in the web server’s error log, or WordPress debug.log (assuming you’ve enabled the WP_DEBUG constant)?
ANS) I am not seeing any other issues
I need to ask all these questions because I don’t see how line 227 in that file in the current version (8.33.1-1) could possibly create that error.
ANS) No problem, you do a fantastic job with support and helping people.
Thanks.
Could you enable WP_DEBUG in your wp-config.php? It might already be there (set to false) or you may have to add it:
define('WP_DEBUG', true);
By default that should send all error to the screen. If you want to send them to the debug.log file instead, use this:
define('WP_DEBUG', true);
if ( defined('WP_DEBUG') && WP_DEBUG == true ) {
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
@ini_set('display_errors',0);
}
My guess is that v8.33.2-1 might give the same error (nothing has changed in that file), but you might want to give it a try – just in case. š
After enabling WP_DEBUG, let me know if there are additional errors.
js.
Any update on this, or should I set the thread to resolved?
js.
Thread Starter
james
(@westbury84)
Sorry for the delay. I removed the plugin and it resolved the problem. I am going to install an earlier version to see what happens