MyBB Community Forums

Full Version: What template is this in?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What template is this in to remove this;
[Image: 4ff5r.png?1]
Admin CP -> Templates & Styles -> *your template* -> Index Page Templates -> index

Look for {$boardstats} and remove it.
(2012-12-22, 01:53 AM)markwesley Wrote: [ -> ]Admin CP -> Templates & Styles -> *your template* -> Index Page Templates -> index

Look for {$boardstats} and remove it.

Not the board stats, the minus button on the board stats.
Enable "Output template start/end comments?" in AdminCP > Server and Optimization Options so you can easily view the source code of page, and determine which templates were used. Saves you a lot of time and you don't have to create a thread for it.
(2012-12-22, 02:23 AM)Kodaks Wrote: [ -> ]Enable "Output template start/end comments?" in AdminCP > Server and Optimization Options so you can easily view the source code of page, and determine which templates were used. Saves you a lot of time and you don't have to create a thread for it.

It already is by default, now how would I know from there?
Navigate to the page on your site that you would like to view template outputs. Using your web browser's "View Source" feature, you can find the template outputs among the code.
When creating a site, you should have general MyBB knowledge. The board statistics is in the Index page, it's called Board Statistics, pretty safe bet you will need to remove something in index_boardstats

ACP > Templates & Styles > Templates > {your theme} > Index Page Templates > index_boardstats > remove this line of code
<div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['boardstats']}.gif" id="boardstats_img" class="expander" alt="[-]" title="[-]" /></div>

I suggest you read up on MyBB and HTML.
(2012-12-22, 03:04 AM)Kodaks Wrote: [ -> ]Navigate to the page on your site that you would like to view template outputs. Using your web browser's "View Source" feature, you can find the template outputs among the code.
tks
(2012-12-22, 03:13 AM)Kondux Wrote: [ -> ]When creating a site, you should have general MyBB knowledge. The board statistics is in the Index page, it's called Board Statistics, pretty safe bet you will need to remove something in index_boardstats

ACP > Templates & Styles > Templates > {your theme} > Index Page Templates > index_boardstats > remove this line of code
<div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['boardstats']}.gif" id="boardstats_img" class="expander" alt="[-]" title="[-]" /></div>

I suggest you read up on MyBB and HTML.
tks, + rep to both of u! Smile
(2012-12-22, 03:13 AM)Kondux Wrote: [ -> ]When creating a site, you should have general MyBB knowledge. The board statistics is in the Index page, it's called Board Statistics, pretty safe bet you will need to remove something in index_boardstats

ACP > Templates & Styles > Templates > {your theme} > Index Page Templates > index_boardstats > remove this line of code
<div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['boardstats']}.gif" id="boardstats_img" class="expander" alt="[-]" title="[-]" /></div>

I suggest you read up on MyBB and HTML.

Was just about to post this but got ninja'd Toungue