- 3,323
- GTP_Mark
- Mark T33
A friend of mine recently purchased a website template but he is having trouble removing some of the pre-made features. I'm not familiar with html and .php templates so I thought I would get some advice before making any changes.
The feature that he wants removed is an online stats box on the bottom left hand menu of this site: www.thebusinessfinder.co.uk
I managed to find the .php template and have found the section text that I think needs to be removed. I just need someone to highlight the code that I should be removing.
I have highlighted what I think I should be removing.
The feature that he wants removed is an online stats box on the bottom left hand menu of this site: www.thebusinessfinder.co.uk
I managed to find the .php template and have found the section text that I think needs to be removed. I just need someone to highlight the code that I should be removing.
Code:
</div>
</div>
<div class="box">
<img src="images/design/titles/categories.gif" alt="" />
<div class="wrap" id="cats">
<?=$Categories?>
</div>
</div>
[COLOR="Red"]<div class="box">
<img src="images/design/titles/user_stats.gif" alt="" />
<div class="wrap">
<table id="stats">
<tr><td>Users Online:</td><td class="r"><?=$usercountline2?></td></tr>
<tr><td>Total Ads Listed:</td><td class="r"><?=$usercountline?></td></tr>
</table>
</div>
</div>[/COLOR]
<div class="box">
<img src="images/design/titles/poll.gif" alt="" />
<div class="wrap" id="poll">
<? include "poll.php";?>
</div>
</div>
I have highlighted what I think I should be removing.