Okay here is what I ended up with:
hooked at global_state_check, this will pull from the blog text and feed it into the meta description/ og:description
PHP Code:
if ($vbulletin->GPC['blogid'] AND $GLOBALS['bloginfo'])
{
$atdcbs_description = $vbulletin->db->query_first("SELECT " . TABLE_PREFIX . "blog_text.pagetext FROM " . TABLE_PREFIX . "blog_text WHERE " . TABLE_PREFIX . "blog_text.blogid = ".$vbulletin->GPC['blogid']);
$atdcbs_description = preg_replace("/\[[^)]+\]/","",$atdcbs_description['pagetext']);
$atdcbs_description = strip_tags($atdcbs_description);
$atdcbs_description = substr($atdcbs_description, 0 ,300)."...";
$atdcbs_description = htmlspecialchars($atdcbs_description, ENT_QUOTES);
$vbulletin->options['description'] = $atdcbs_description;
}
hooked at fb_opengraph_array, this will remove the site name from the title when liking on facebook (I thought it was a bit redundant)...
PHP Code:
if (VB_PRODUCT == 'vbblog') {
unset($og_array['og:site_name']);
}