Could someone please tell me how to remove the request since counter ant tne bottom of page in MS2-MAX 1.5. I have tried in includes/footer.php but nothing changed.
Thanks in advance
Ray
This is a discussion on remove request since counter within the osCMax v1.7 General Mods Discussion forums, part of the osCmax v1.7 Forums category; Could someone please tell me how to remove the request since counter ant tne bottom of page in MS2-MAX 1.5. ...
Could someone please tell me how to remove the request since counter ant tne bottom of page in MS2-MAX 1.5. I have tried in includes/footer.php but nothing changed.
Thanks in advance
Ray
/catalog/templates/main_page.tpl.php
on or around line 79-84 you will find this code:
<?php require(DIR_WS_INCLUDES . 'counter.php'); ?>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr class="footer">
<td class="footer">&nbsp;&nbsp;<?php echo strftime(DATE_FORMAT_LONG); ?>&nbsp;&nbsp;</td>
<td align="right" class="footer">&nbsp;&nbsp;<?php echo $counter_now . ' ' . FOOTER_TEXT_REQUESTS_SINCE . ' ' . $counter_startdate_formatted; ?>&nbsp;&nbsp;</td>
</tr>
Change it to this, cut and paste from here if you like and its an unmodified shop already otherwise go through it.
<?php //require(DIR_WS_INCLUDES . 'counter.php'); ?>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr class="footer">
<td class="footer">&nbsp;&nbsp;<?php echo strftime(DATE_FORMAT_LONG); ?>&nbsp;&nbsp;</td>
<td align="right" class="footer">&nbsp;&nbsp;<?php //echo $counter_now . ' ' . FOOTER_TEXT_REQUESTS_SINCE . ' ' . $counter_startdate_formatted; ?>&nbsp;&nbsp;</td>
</tr>
Clifton Murphy CEO/CTO
Hyperactive Inc.
osCommerce hosting, OSCMAX hosting, osCommerce modification, and OSCMAX modification specialists!
Clifton,
Thanks for info. I also removed the 'request since' in /catalog/includes/languages/english.php to get rid of the words request since that was left on the page.
Again thanks
Ray
why not just remove the whole section? that way the date table take up 100% od the width leaving the right hand section empty...
Bookmarks