Well, for Profile Fields, I have something else altogether.
I change the display of the existing fields to "none", and put in my OWN stuff.
parse_templates
PHP Code:
global $vbulletin,$template_hook;
$css_additional = array();
$css_additional[] = '.userinfo_extra {display:none !important;}';
$css_additional[] = '.imlinks {display:none !important;}';
$css_additional[] = '.onlinestatus {float:left;left:5px !important;}';
/// Postbit Alignment
if ($vbulletin->userinfo['field43'] == 'Centered')
{
$css_additional[] = '.postdetails .userinfo {text-align:center;}';
$css_additional[] = '.postdetails .userinfo .username_container {width:auto;margin-left:auto;margin-right:auto;}';
$css_additional[] = '.postbitlegacy .userinfo .postuseravatar, .eventbit .userinfo .eventuseravatar {text-align:center;}';
}
if ($vbulletin->userinfo['field43'] == 'Left')
{
$css_additional[] = '.postdetails .userinfo {text-align:left;}';
$css_additional[] = '.postdetails .userinfo .username_container {width:auto;margin-left:0px;margin-right:auto;}';
$css_additional[] = '.postbitlegacy .userinfo .postuseravatar, .eventbit .userinfo .eventuseravatar {text-align:left;}';
}
if ($vbulletin->userinfo['field43'] == 'Right')
{
$css_additional[] = '.postdetails .userinfo {text-align:right;}';
$css_additional[] = '.postdetails .userinfo .username_container {width:auto;margin-left:auto;margin-right:0px;}';
$css_additional[] = '.postbitlegacy .userinfo .postuseravatar, .eventbit .userinfo .eventuseravatar {text-align:right;}';
}
$template_hook['headinclude_bottom_css'] .= '<style type="text/css">'."\n".implode("\n",$css_additional)."\n".'</style>';
cache_templates
PHP Code:
$cache[] = 'sar_postbit_info_extra';
postbit_display_complete
PHP Code:
//global $vbulletin,$show,$template_hook;
global $vbulletin;
/// User Info Shit
$templater = vB_Template::create('sar_postbit_info_extra');
$templater->register('post', $post);
$uinfobit = $templater->render();
$template_hook['postbit_userinfo_right'] = $uinfobit;
postbit_display_start (to make it work with PMs)
PHP Code:
global $vbulletin;
if (THIS_SCRIPT == 'private')
{
$user = fetch_userinfo($post['fromuserid'],2);
$post = array_merge($user,$post);
$post['postid'] = $post['pmid'];
}
Damned 20,000 character limit is making me split this post.