Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Comment out counter?


Biancoblu

Recommended Posts

Posted

Hi,

 

I'm trying to comment out the counter thing at the bottom right that says "x number of requests since...".

I want to keep the date at the bottom left, just get rid of the counter.

Here's what I did but it doesn't work:

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

 

I just get /* and */ on my page and the counter's still in place.

Can you help please?

 

My Store

 

Thanks in advance

~ Don't mistake my kindness for weakness ~

Posted
Hi,

 

I'm trying to comment out the counter thing at the bottom right that says "x number of requests since...".

I want to keep the date at the bottom left, just get rid of the counter.

Here's what I did but it doesn't work:

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

 

I just get /* and */ on my page and the counter's still in place.

Can you help please?

 

My Store

 

Thanks in advance

chnage it to

 

<td align="right" class="footer">  <?php echo $counter_startdate_formatted; ?>  </td>
 </tr>

 

which should work...

 

your /* */ were outwith the php

with ten thousand dollars we'll all be millionaires

Posted

Thanks for your quick reply.

 

I still have the date I opened the store at, how do I remove "Friday 10 March 2006" ?

 

I'm just interested in having today's date.

~ Don't mistake my kindness for weakness ~

Archived

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

×
×
  • Create New...