Home

Postate qui discussioni di carattere generale riguardo a problemi di installazione e configurazione di osCommerce

Moderatore: mod Generali

Rispondi
fusus
membro Junior
membro Junior
Messaggi: 26
Iscritto il: 22/09/2004, 0:00
Località: italia
Contatta:

Home

Messaggio da fusus »

Come posso aggiungere dei banner sotto la home?

il mio web e' www.webupinformatica.it


grazie per l'aiuto
pippo010
membro Regular
membro Regular
Messaggi: 134
Iscritto il: 26/01/2004, 1:00
Località: Italia
Contatta:

Messaggio da pippo010 »

Ti invio il codice del mio footer.php al quale ho già fatto la modifica.
Nel pannello di controllo, alla gestione banner, devi creare il gruppo Fondo.

Ciao



<?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');
?>
<div align="center">
<table border="0" width="760" 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="760" cellspacing="0" cellpadding="0">
<tr>
<td align="center" class="smallText">
<?php
/*
The following copyright announcement can only be
appropriately modified or removed if the layout of
the site theme has been modified to distinguish
itself from the default osCommerce-copyrighted
theme.

For more information please read the following
Frequently Asked Questions entry on the osCommerce
support site:

http://www.oscommerce.com/community.php/faq,26/q,50

Please leave this comment intact together with the
following copyright announcement.
*/

echo FOOTER_TEXT_BODY
?>
</td>
</tr>
</table>
<?php
if ($banner = tep_banner_exists('dynamic', 'Fondo')) {
?>
<br>
<table border="0" width="760" cellspacing="0" cellpadding="0">
<tr>
<td align="center"><?php echo tep_display_banner('static', $banner); ?></td>
</tr>
</table>
<?php
}
?>
</div>
fusus
membro Junior
membro Junior
Messaggi: 26
Iscritto il: 22/09/2004, 0:00
Località: italia
Contatta:

Messaggio da fusus »

pippo010 ha scritto:Ti invio il codice del mio footer.php al quale ho già fatto la modifica.
Nel pannello di controllo, alla gestione banner, devi creare il gruppo Fondo.

Ciao



<?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');
?>
<div align="center">
<table border="0" width="760" 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="760" cellspacing="0" cellpadding="0">
<tr>
<td align="center" class="smallText">
<?php
/*
The following copyright announcement can only be
appropriately modified or removed if the layout of
the site theme has been modified to distinguish
itself from the default osCommerce-copyrighted
theme.

For more information please read the following
Frequently Asked Questions entry on the osCommerce
support site:

http://www.oscommerce.com/community.php/faq,26/q,50

Please leave this comment intact together with the
following copyright announcement.
*/

echo FOOTER_TEXT_BODY
?>
</td>
</tr>
</table>
<?php
if ($banner = tep_banner_exists('dynamic', 'Fondo')) {
?>
<br>
<table border="0" width="760" cellspacing="0" cellpadding="0">
<tr>
<td align="center"><?php echo tep_display_banner('static', $banner); ?></td>
</tr>
</table>
<?php
}
?>
</div>



Grazie :wink:
Rispondi