„NextGEN Facebook (NGFB) gives you total control over the information social website crawlers need, improving Google Search ranking, social engagement, and click-through-rates on Facebook, Google+, Twitter, Pinterest, LinkedIn, StumbleUpon, Tumblr and and many more“
A powerful plugin for WordPress, but it sometimes displays many image dimension errors. Even if those errors remind me to optimize the page or post, I sometimes prefer to ignore these during development :)
Here a simple way to hide them:
1 2 3 4 5 6 7 |
add_action('admin_head', 'hide_ngfb_errors'); function hide_ngfb_errors(){ echo '<style type="text/css"> [id^="err_err_wp"]{display: none} </style>'; } |