Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Changing the formatting of the counter


lycrake

Recommended Posts

Posted

Hi there, how can i change the formatting of the counter at the bottom? I literally just want the numbers, and none of the other stuff, which file is it i have to change?

 

Thanks

 

LyC

Posted

look at your includes/footer.php file

you will see:

 

<?php echo $counter_now . ' ' . FOOTER_TEXT_REQUESTS_SINCE . ' ' . $counter_startdate_formatted; ?>

 

that is the code for the counter

 

to just display the number change it to :

 

<?php echo $counter_now; ?>

 

to change the text after the number look in languages/english.php around line 61

 

for: define('FOOTER_TEXT_REQUESTS_SINCE', 'requests since');

 

change the 'request since' bit to the text you want.

 

hope that helps

Archived

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

×
×
  • Create New...