So far I created a plugin for vbulletin CMS product and parse templates hook
PHP Code:
$cistwitter = $userinfo["field{$vbulletin->options['cistwitterprofilefield']}"];
$templater = vB_Template::create('vbcms_twitter');
$templater->register('cistwitter', $cistwitter);
$templatevalues['cistwitterarray'] = $templater->render();
vB_Template::preRegister('vbcms_content_article_page', $templatevalues);
Ultimately I would just like $cistwitter to show in the vbcms_content_article_page template but I am not sure how to just do that so I put that in this vbcms_twitter template via {vb:raw cistwitter} and tried to insert that template into vbcms_content_article_page via {vb:raw cistwitterarray}
What did I miss?