Community Add-Ons
Column Banner
for osCommerce Online Merchant v2.2
This Add-On is to include a Banner Ad in the Left and/or Right Column(s).
The Banner is also designed to vanish on secure pages for banners that pull images from other sites to avoid the unsecure items msgs.
Change the code in the: column_banner.php
<?php
$info_box_contents = array();
$info_box_contents[] = array('align' => 'center',
'text' => "WRITE WHATEVER U WANT HERE, OR LEAVER BLANK"
);
new infoBoxHeading($info_box_contents, false, false);
$info_box_contents = array();
$info_box_contents[] = array('align' => 'center',
'text' => tep_display_banner('static', $banner)
);
// $info_box_contents[] = array('align' => 'center',
// 'text' => tep_display_banner('static', $banner)
// );
new infoBox($info_box_contents);
?>
