MyBB Community Forums

Full Version: Which postbit is this
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've attached a screenshot of the area I need to locate in the template section. Which template or postbit is this?

Thank you
index - You know you could tell by just opening up the html and looking at the comments.
That's for the index which is not what I was asking for btw. That bottom area changes with 6 folder images upon entering a forum. That's the postbit I need because I want to link to a forum folder reference page instead of having the images appear on the page itself.

I also can bring up the index page thru viewing page source but for some reason I can't do that when I enter a forum. Don't know why either O.o

Anyhow, any help is appreciated
Thanks Tikitiki
Uhm... yes it's in the "index" template. What your asking for is in the "index template"....
I removed this code here Tikitiki and was able to remove the 3 folders from the front page. But the 6 still existed on the individual forum pages like in the pic I provided. Can you please tell me what else I need to erase to get this to happen. Thank you again
	<img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /> <span class="smalltext">{$lang->new_posts}</span><br />
						<img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /> <span class="smalltext">{$lang->no_new_posts}</span><br />
						<img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" style="vertical-align: middle;" /> <span class="smalltext">{$lang->forum_locked}</span>
forumdisplay template
Does not appear to be that template.
<html>
<head>
<title>{$mybb->settings['bbname']} - {$foruminfo['name']} </title>
{$headerinclude}
{$rssdiscovery}
</head>
<body>
{$header}
{$moderatedby}
{$usersbrowsing}<br /><br />
{$rules}
{$subforums}
{$threadslist}
{$footer}
</body>
</html>

It should be a code block with all the images like on index. I also checked all the forum display templates for one that included all the images togather and couldn't find one. Any where else to look?
hmm appears to be in forumdisplay_threadlist I think
Yes Tikitiki, that was it Smile Thank you.