Ok, I've seen alot of posts asking "How do I get all members to be able to see each other's warning bar?"
Well, here is a "hacky" quick fix that will do just that:
Code:
Go to Admin Control Panel ( ACP ) -> Plugins -> Look for "Warn Display [Post Bit]" ->
And just replace that whole thing with this:
Code:
global $vbulletin;
if ($post['postid'])
{
require_once(DIR . '/includes/functions_warning.php');
$show['warning'] = true;
$post['warning'] = construct_warning_display($post, can_moderate($forum['forumid']));
}
if ($post['postid'] && (can_moderate($forum['forumid']) || ($vbulletin->userinfo['userid'] == $post['userid'] && $vbulletin->options['warn_allow_view'])))
{
require_once(DIR . '/includes/functions_warning.php');
$show['warning'] = true;
$post['warning'] = construct_warning_display($post, can_moderate($forum['forumid']));
}
My little contribution to everyone's anguish.
Save and enjoy.