MyBB Community Forums

Full Version: Simple Folder Legend Mod
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So if you don't want folders to show in your forumdisplay page.
[attachment=6373]

It cleans up the look of your forum if you don't want them there plus still gives your users an opportunity to find out what they mean.

1. Create an additional forum page. I called mine "Folder Legend" name yours what you'd like.
2. In the Folders Legend page move and organize your images to your liking with explanations of what each folder represents.
[attachment=6374]

3. Log into your admin>Templates>Modify/Delete> Find Forum Display templates-then expand>Find forumdisplay_threadlist and replace that code with this one. The one below is the origianl code, it just has the folder images/text removed and a link to your new Folders Legend page. Just change the link to your folders legend page you created.
<div class="float_right" style="padding-bottom: 4px;">
	{$newthread}
</div>
{$multipage}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;" >
	<tr>
		<td class="thead" colspan="{$colspan}">
			<div style="float: right;">
				<span class="smalltext"><strong><a href="misc.php?action=markread&amp;fid={$fid}">{$lang->markforum_read}</a> | <a href="usercp2.php?action=addsubscription&amp;type=forum&amp;fid={$fid}">{$lang->subscribe_forum}</a>{$clearstoredpass}</strong></span>
			</div>
			<div>
				<strong>{$foruminfo['name']}</strong>
			</div>
		</td>
	</tr>
	<tr>
		<td class="tcat" align="center" colspan="2">&nbsp;</td>
		<td class="tcat" align="center" width="40%"><span class="smalltext"><strong><a href="{$sorturl}&amp;sortby=subject&amp;order=asc">{$lang->thread}</a> {$orderarrow['subject']}</strong></span></td>
		<td class="tcat" align="center" width="14%"><span class="smalltext"><strong><a href="{$sorturl}&amp;sortby=starter&amp;order=asc">{$lang->author}</a> {$orderarrow['starter']}</strong></span></td>
		<td class="tcat" align="center" width="7%"><span class="smalltext"><strong><a href="{$sorturl}&amp;sortby=replies&amp;order=desc">{$lang->replies}</a> {$orderarrow['replies']}</strong></span></td>
		<td class="tcat" align="center" width="7%"><span class="smalltext"><strong><a href="{$sorturl}&amp;sortby=views&amp;order=desc">{$lang->views}</a> {$orderarrow['views']}</strong></span></td>
		{$ratingcol}
		<td class="tcat" align="center" width="200"><span class="smalltext"><strong><a href="{$sorturl}&amp;sortby=lastpost&amp;order=desc">{$lang->lastpost}</a> {$orderarrow['lastpost']}</strong></span></td>
		{$inlinemodcol}
	</tr>
	{$announcementlist}
	{$threads}
	<tr>
		<td class="tfoot" align="right" colspan="{$colspan}">
		<form action="forumdisplay.php" method="get">
			<input type="hidden" name="fid" value="{$fid}" />
			<select name="sortby">
				<option value="subject" {$sortsel['subject']}>{$lang->sort_by_subject}</option>
				<option value="lastpost" {$sortsel['lastpost']}>{$lang->sort_by_lastpost}</option>
				<option value="starter" {$sortsel['starter']}>{$lang->sort_by_starter}</option>
				<option value="started" {$sortsel['started']}>{$lang->sort_by_started}</option>
				{$ratingsort}
				<option value="replies" {$sortsel['replies']}>{$lang->sort_by_replies}</option>
				<option value="views" {$sortsel['views']}>{$lang->sort_by_views}</option>
			</select>
			<select name="order">
				<option value="asc" {$ordersel['asc']}>{$lang->sort_order_asc}</option>
				<option value="desc" {$ordersel['desc']}>{$lang->sort_order_desc}</option>
			</select>
			<select name="datecut">
				<option value="1" {$datecutsel['1']}>{$lang->datelimit_1day}</option>
				<option value="5" {$datecutsel['5']}>{$lang->datelimit_5days}</option>
				<option value="10" {$datecutsel['10']}>{$lang->datelimit_10days}</option>
				<option value="20" {$datecutsel['20']}>{$lang->datelimit_20days}</option>
				<option value="50" {$datecutsel['50']}>{$lang->datelimit_50days}</option>
				<option value="75" {$datecutsel['75']}>{$lang->datelimit_75days}</option>
				<option value="100" {$datecutsel['100']}>{$lang->datelimit_100days}</option>
				<option value="365" {$datecutsel['365']}>{$lang->datelimit_lastyear}</option>
				<option value="9999" {$datecutsel['9999']}>{$lang->datelimit_beginning}</option>
			</select>
			{$gobutton}
		</form>
		</td>
	</tr>
</table>
<div class="float_right" style="padding-top: 4px;">
	{$newthread}
</div>
{$multipage}
<br style="clear: both;" />
{$inlinemod}

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;" >
	<tr>
		<td class="trow1">
			<table width="100%" border="0">
				<tr>
					<td>
						<table width="100%" cellspacing="0" cellpadding="2" style="white-space: nowrap; border: none">
							<tr>
								<td>
								<a href="http://www.yoururl.com/xxx/folderlegend.php">Folder Legend</a>
								</td>
								<td>
								</td>
							</tr>
						</table>
					</td>
					<td align="right">
						{$searchforum}<br /><br />
						{$forumjump}
					</td>
				</tr>
			</table>
		</td>
	</tr>
</table>
{$inline_edit_js}

Hope this helps someone Smile
thx Smile