To hide the InfoCenter from guests, for myself, using v.1.1.13, I added the following:
BoardIndex.template.php
Add:
if ($context['user']['is_logged'])After:
// "Users online" - in order of activity.After:
// Here's where the "Info Center" starts...After:
// This is the "Recent Posts" bar.Before:
echo '
', $context['show_who'] ? '<a href="' . $scripturl . '?action=who">' : '', $context['num_guests'], ' ', $context['num_guests'] == 1 ? $txt['guest'] : $txt['guests'], ', ' . $context['num_users_online'], ' ', $context['num_users_online'] == 1 ? $txt['user'] : $txt['users'];