Mah... a me il suggerimento che ti ho postato funziona... come alternativa (o anche per usarli insieme) puoi fare delle aggiunte al file footer.php che trovi in catalog-includes.
Io ho aggiunto la parte in rosso:
<?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 (c) 2003 osCommerce
Released under the GNU General Public License
*/
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>
<br>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td align="center" class="smallText">QUI INSERISCI QUELLO CHE VUOI - PARTITA IVA: XXXXXXX<br>
<?php
echo FOOTER_TEXT_BODY
?>
</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
}
?>
Ricordati che oltre a quello che inserirai li verrà anche visualizzata la scritta presente nel FOOTER_TEXT_BODY che trovi nel file italian.php
Nel mio file postato sopra non trovi il riferimento al copyright perchè ho tolto dal post quella parte visto che era modificato con una contribution e non volevo creare confusione.
Ciao, Stefano