hi,
I'd like to remove the Info Center located at the foot of the forum, and the User Header info at the top of the forum [Hello User and the Search box and all that under those two]
I have a Portal System, and so it's pretty unnecessary to have it all there.
I would still like to keep the "News" block that is above the forum categories.
I'd greatly appreciate someone with the patience to walk me through the process, as opposed to doing it themselves.
Thank you =)
EDIT: I run RC3 and a personalised duplicate of the default theme.
This post was originally made when I ran RC3; now I'm on RC5 and would appreciate an update, please!
In order to remove Infocenter please attach - Themes/theme_name/Boardindex.template.php
for header - Themes/theme_name/index.template.php
In the Boardindex.template.php file there is a line towards the bottom of the file that echo's out the template_info_center() function. You should simply be able to comment out that line like this:
// template_info_center();
In the default theme that is about line # 492.
Follow IchBin to remove Info Centre.
For removing user info under Forum Name & Logo. Find:
echo '
', empty($settings['site_slogan']) ? '<img id="smflogo" src="' . $settings['images_url'] . '/smflogo.png" alt="Simple Machines Forum" title="Simple Machines Forum" />' : '<div id="siteslogan" class="align_right">' . $settings['site_slogan'] . '</div>', '
</div>
<div id="upper_section" class="middletext"', empty($options['collapse_header']) ? '' : ' style="display: none;"', '>
Replace:
echo '
', empty($settings['site_slogan']) ? '<img id="smflogo" src="' . $settings['images_url'] . '/smflogo.png" alt="Simple Machines Forum" title="Simple Machines Forum" />' : '<div id="siteslogan" class="align_right">' . $settings['site_slogan'] . '</div>', '
</div>';
/* <div id="upper_section" class="middletext"', empty($options['collapse_header']) ? '' : ' style="display: none;"', '>
And find: // ]]></script>';
// Show the menu here, according to the menu sub template.
template_menu();
Replace:
// ]]></script>';
*/
// Show the menu here, according to the menu sub template.
template_menu();
Thank you very much, guys =)
Could I please get the RC5 update of this?
Please and Thank you!!
It is basically the same dear.