Quote:
Originally Posted by deverill2010
Even if its not directly within the quick reply box (which would be ace), even below the reply to thread button would be better I reckon as it's more in your eye line ifyswim.
ETA: nominated for MOTM and a donation made as it's just ace!
|
Much appreciated. :up:
I am working on getting this to look better but if you want to see where I'm going go to your Plugin Manager, find this product, and edit the plugin on the showthread_complete hook.
Erase all the code there and replace it with:
PHP Code:
global $vbulletin, $vbphrase;
if ($vbulletin->options['bop5qrg_en'] AND $vbulletin->options['bop5qrg_auto'] AND $vbulletin->options['bop5username'])
{
$usrnmcode = '<div style="margin-left: 10px;"><label for="username">'.$vbphrase['bop5qrg_guest_user_name'].':</label><input type="text" class="primary textbox" id="username" name="username" value="'.addslashes($vbulletin->options['bop5qrg_username']).'" tabindex="1" /><p class="description"><a href="javascript://" onclick="return highlight_login_box();">'.$vbphrase['click_here_to_log_in'].'</a></p><br />';
$human_verify = str_replace ('rightcol', '', $human_verify);
//$find = '<input type="hidden" name="poststarttime" value="" />';
$find = '<div class="wysiwyg_block">';
if ($vbulletin->options['hv_type'] == "Recaptcha")
{
$human_verify = str_replace ("'", "\\'", $human_verify);
}
$replace = $find .'<table class="formcontrols" padding="10" style="border-bottom: 0px;" border="0" width="100%"><tr><td width="200" VALIGN="top">' . $usrnmcode .'</td><td VALIGN="top">' . $human_verify . '</td></tr></table>';
$vbulletin->templatecache['SHOWTHREAD'] = str_replace($find, $replace.$find, $vbulletin->templatecache['SHOWTHREAD']);
}
If you want to go back to how it was just re-install the mod with allow overwrite set to yes.