coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 miscellaneous => Topic started by: led on July 11, 2006, 11:17:07 AM

Title: Page counter in lower left corner
Post by: led on July 11, 2006, 11:17:07 AM
Hi

I would like to have a page counter in the lower left corner, just under or above the "php" logo.
I have a counter code:

<!-- chart.dk unified trackercode - v1 -->
<script src='http://www.chart.dk/js/unified.asp'></script>
<script language='javascript'>
track_visitor(76401, '');
</script>
<noscript>
<a href="http://www.chart.dk/ref.asp?id=76401" target="_blank">
  <img src="http://cluster.chart.dk/chart.asp?id=76401" border="0" alt="Chart.dk">
</a>
</noscript>
<!-- chart.dk unified trackercode - v1 -->

But where should I put it?
I only want it to be seen on the main page (index.php), and it would be nice if it is on index.php nomatter what theme people choose.
Title: Re: Page counter in lower left corner
Post by: Sami on July 11, 2006, 11:26:08 AM
- if you want it just on index.php ,IMO you must create a plugin for it, there is no way to write a mod for it
- also you can modify each template.html (for each theme that you have) and add that code to the end of them.
Title: Re: Page counter in lower left corner
Post by: led on July 11, 2006, 11:46:05 AM
Thank you.

How can I make the counter be just above the php logo?
Or maybe even better, in the center of the page?
Now it´s a bit out to the left
See here:

www.larsemil.dk
Title: Re: Page counter in lower left corner
Post by: Sami on July 11, 2006, 11:58:04 AM
add this to thmes/your theme/template.html

<table align="center"><tr><td><!-- chart.dk unified trackercode - v1 -->
<script src='http://www.chart.dk/js/unified.asp'></script>
<script language='javascript'>
track_visitor(76401, '');
</script>
<noscript>
<a href="http://www.chart.dk/ref.asp?id=76401" target="_blank">
  <img src="http://cluster.chart.dk/chart.asp?id=76401" border="0" alt="Chart.dk">
</a>
</noscript>
<!-- chart.dk unified trackercode - v1 --></td></tr></table>


between {CUSTOM_FOOTER} and {VANITY} placeholders
Title: Re: Page counter in lower left corner
Post by: led on July 11, 2006, 12:02:51 PM
Thank you VERY much.  8)
Title: Re: Page counter in lower left corner
Post by: led on July 11, 2006, 12:20:03 PM
If I want a little space between the flags and the counter. How do I do that?
Title: Re: Page counter in lower left corner
Post by: Sami on July 11, 2006, 12:28:00 PM
add a

<br/>

at the beginning of my previous code
Title: Re: Page counter in lower left corner
Post by: led on July 11, 2006, 12:29:49 PM
Nice. Thanks