User Bar Delete/Move
1.0
This mod adds the following options:
1 - Remove the User Bar in the Info Center
2 - Move the Online User List to above the Info Center (for when Info Center is completely disabled)
It also modifies the Admin Panel Forum Preferences and Settings page to include these options, as well as changing the look a slight bit.
Kurakin Wicked
http://www.wickedspiral.com
Sources\BoardIndex.pl
print <<"EOT";
» $txt{'158'}
$txt{'141'}: $guests $txt{'142'}: $users
EOT
if($Show_MemberBar == 1) {
print <<"EOT";
» $txt{'158'}
$txt{'141'}: $guests $txt{'142'}: $users
EOT
}
$txt{'685'}
EOT
EOT
if ($moveonlinelist == 1) {
print "$txt{'750'} $guests $txt{'751'}, $users";
}
print <<"EOT";
Settings.pl
$Show_MemberBar = 1; # Set to 1 to display the Members List table row on Board Index
$Show_UserBar = 0; # Set to 1 to display the number of guests and names of users logged in.
$moveonlinelist = 1; # Move the list of online users to above the Info Center
english.lng
$txt{'749'} = "The 'number of posts' box can only contain digits.";
$txt{'750'} = "Online:";
$txt{'751'} = "guests";
$txt{'752'} = "Show User Bar on Board Index?";
$txt{'753'} = "Move User Online List?";
$txt{'754'} = "Info Center Options";
keys(%txt) = 749;
keys(%txt) = 754;
Sources\Admin.pl
$txt{'752'}
$txt{'753'}
\$Show_MemberBar = $showmemberbar; # Set to 1 to display the Members List table row on Board Index
\$Show_UserBar = $showuserbar; # Set to 1 to display the Users Online List row on Board Index
\$moveonlinelist = $moveuserlist; # Move the list of online users to above the Info Center
if ($Show_RecentBar) { $srbarchecked = "checked" }
if ($Show_UserBar) { $suobarchecked = "checked" }
if ($moveonlinelist) { $mvolchecked = "checked" }