Go in plugin manager search for Guest warn plugins and edit the "Code including" one
Replace
PHP Code:
if ($vbulletin->options['guest_warn_active'] && $show['guest'] && !in_array(THIS_SCRIPT, array('register'))) {
With this
PHP Code:
if ($vbulletin->options['guest_warn_active'] && $show['guest'] && !in_array(THIS_SCRIPT, array('register','blog'))) {
It should work, let me know!