Simple Machines Community Forum

SMF Support => SMF 2.1.x Support => Topic started by: Wizard0011 on October 21, 2021, 09:22:27 PM

Title: How to hide the board description from the inside
Post by: Wizard0011 on October 21, 2021, 09:22:27 PM
Hello,
I am using smf 2.1 RC4.
I can't find the option "Show board descriptions inside boards" in theme member options although board descriptions still appear inside the boards, How can i hide them?
Check vs-clan.com > any board.
Title: Re: How to hide the board description from the inside
Post by: shadav on October 21, 2021, 09:46:14 PM
so just to clarify you want the board description on the index but not on the messageindex? if so

in Forum Folder/Themes/THEME IN USE/MessageIndex.template.php
(if your theme doesn't have this file it's in the default theme folder)

find and delete
if ($context['description'] != '')
echo '
', $context['description'];

in Forum Folder/Themes/THEME IN USE/index.css
find and delete
#description_board h3::after {
content: ' - ';
}