MyBB Community Forums

Full Version: Trying to remove some text
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So I'm trying to clean up my board by removing things that I don't want to belong there. Specifically I want to get rid of the text in this screenshot next to the quick reply box. Can someone tell me where I can find them?

[Image: PIfgL.png]
Oh cool, I found out how to remove the bottom text. It's just
Admin CP> Templates & Styles> Templates> Your Theme's templates, then go into the footer and look for
					<span class="smalltext"><a href="{$mybb->settings['contactlink']}">{$lang->bottomlinks_contactus}</a> | <a href="{$mybb->settings['homeurl']}">{$mybb->settings['homename']}</a> | <a href="#top">{$lang->bottomlinks_returntop}</a> | <a href="#content">{$lang->bottomlinks_returncontent}</a> | <a href="<archive_url>">{$lang->bottomlinks_litemode}</a> | <a href="{$mybb->settings['bburl']}/misc.php?action=syndication">{$lang->bottomlinks_syndication}</a></span>
(2010-02-13, 05:47 PM)edjca Wrote: [ -> ]Oh cool, I found out how to remove the bottom text. It's just
Admin CP> Templates & Styles> Templates> Your Theme's templates, then go into the footer and look for
					<span class="smalltext"><a href="{$mybb->settings['contactlink']}">{$lang->bottomlinks_contactus}</a> | <a href="{$mybb->settings['homeurl']}">{$mybb->settings['homename']}</a> | <a href="#top">{$lang->bottomlinks_returntop}</a> | <a href="#content">{$lang->bottomlinks_returncontent}</a> | <a href="<archive_url>">{$lang->bottomlinks_litemode}</a> | <a href="{$mybb->settings['bburl']}/misc.php?action=syndication">{$lang->bottomlinks_syndication}</a></span>

That will remove the text in every page too, not only in showthread page.
(2010-02-13, 08:18 PM)RateU Wrote: [ -> ]
(2010-02-13, 05:47 PM)edjca Wrote: [ -> ]Oh cool, I found out how to remove the bottom text. It's just
Admin CP> Templates & Styles> Templates> Your Theme's templates, then go into the footer and look for
					<span class="smalltext"><a href="{$mybb->settings['contactlink']}">{$lang->bottomlinks_contactus}</a> | <a href="{$mybb->settings['homeurl']}">{$mybb->settings['homename']}</a> | <a href="#top">{$lang->bottomlinks_returntop}</a> | <a href="#content">{$lang->bottomlinks_returncontent}</a> | <a href="<archive_url>">{$lang->bottomlinks_litemode}</a> | <a href="{$mybb->settings['bburl']}/misc.php?action=syndication">{$lang->bottomlinks_syndication}</a></span>

That will remove the text in every page too, not only in showthread page.

Yeah, that's what I was going for.