Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

No hit counter anymore?


giellacustoms

Recommended Posts

Posted

Look on this page:

catalog/includes/footer.php

 

Do you see this towards the top:

 

require(DIR_WS_INCLUDES . 'counter.php');

?>

<table border="0" width="100%" cellspacing="0" cellpadding="1">

<tr class="footer">

<td class="footer">  <?php echo strftime(DATE_FORMAT_LONG); ?>  </td>

<td align="right" class="footer">  <?php echo $counter_now . ' ' . FOOTER_TEXT_REQUESTS_SINCE . ' ' . $counter_startdate_formatted; ?>  </td>

</tr>

</table>

Lloyd

Posted

no, this is what I have......Also I installed a mod toware it showed the visa and other credit card logos

 

<?php

/*

$Id: footer.php,v 1.26 2003/02/10 22:30:54 hpdl Exp $

 

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2003 osCommerce

 

Released under the GNU General Public License

*/

 

 

?>

<table border="0" width="100%" cellspacing="0" cellpadding="1">

<tr class="headerNavigation">

<td class="headerNavigation">  </td>

<td align="middle" class="headerNavigation"><a href="<?php echo tep_href_link(FILENAME_CONTACT_US); ?>" class="headerNavigation"><?php echo BOX_INFORMATION_CONTACT; ?></a>  |  <a href="<?php echo tep_href_link(FILENAME_CONDITIONS); ?>" class="headerNavigation"><?php echo BOX_INFORMATION_CONDITIONS; ?></a>  |  <a href="<?php echo tep_href_link(FILENAME_PRIVACY); ?>" class="headerNavigation"><?php echo BOX_INFORMATION_PRIVACY; ?></a>  | <a href="<?php echo tep_href_link(FILENAME_SHIPPING);?>" class="headerNavigation"><?php echo BOX_INFORMATION_SHIPPING; ?></a>   </td>

</tr>

</table>

<br>

<table border="0" width="100%" cellspacing="0" cellpadding="0">

 

 

<!-- Begin add paypal and cc logos by alancwade -->

<tr>

<td align="center" width="100%">

<!--Spam Buster added by Kelly Keeton (www.eshopping4less.com)-->

<script LANGUAGE="Javascript">

// Change User Name and Domain Name

username="payments"

at="@"

domainname="thelittlecraftshop.com"

// End of Change

document.write("<A HREF='https://www.paypal.com/verified/pal="+username+""+at+""+domainname+"'><img src='https://www.paypal.com/images/verification_seal.gif' border='0'></a>")

</script>

</td>

</tr>

<tr>

<td valign=top align=center><img src="https://www.paypal.com/en_US/i/logo/logo_ccVisa.gif" border=0 alt=" Visa"><wbr><img src="https://www.paypal.com/en_US/i/logo/logo_ccMC.gif" border=0 alt=" Mastercard"><wbr><img src="https://www.paypal.com/en_US/i/logo/logo_ccDiscover.gif" border=0 alt=" Discover"><wbr><img src="https://www.paypal.com/en_US/i/logo/logo_ccAmex.gif" border=0 alt=" American Express"><wbr><img src="https://www.paypal.com/en_US/i/logo/logo_ccEcheck.gif" border=0 alt=" eCheck"></td>

</tr>

<!-- End add paypal and cc logos by alancwade -->

 

 

<tr>

<td align="center" class="smallText"></td>

</tr>

</table>

<?php

if ($banner = tep_banner_exists('dynamic', '468x50')) {

?>

<br>

<table border="0" width="100%" cellspacing="0" cellpadding="0">

<tr>

<td align="center"><?php echo tep_display_banner('static', $banner); ?></td>

</tr>

</table>

<?php

}

?>

Posted

Well put it in..

You will need to put this at the top in between */ and ?>:

 

*/

require(DIR_WS_INCLUDES . 'counter.php');

 

?>

 

The place to add the counter has been changed on your page -- you might try placing it after this line

<tr>

<td align="center" class="smallText"></td>

</tr>

</table>

 

add this right after

<br>

<table border="0" width="100%" cellspacing="0" cellpadding="1">

<tr class="footer">

<td class="footer">  <?php echo strftime(DATE_FORMAT_LONG); ?>  </td>

<td align="right" class="footer">  <?php echo $counter_now . ' ' . FOOTER_TEXT_REQUESTS_SINCE . ' ' . $counter_startdate_formatted; ?>  </td>

</tr>

</table>

<br>

Lloyd

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...