
The code for those images in at the bottom of the template for the Information box. Could this cause the checkout problem ?
I am somewhat of a newbie with php, so here is the code where I added the 2 images. Could someone please tell me how to add these images so that I don't get the error ?
This code is from tpl_information.php, in my personalized template folder:
Code:
<?php
/**
* Side Box Template
*
* @package templateSystem
* @copyright Copyright 2003-2005 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: tpl_information.php 2982 2006-02-07 07:56:41Z birdbrain $
*/
$content = '';
$content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">';
$content .= '<h3>' . BOX_HEADING_INFORMATION . '</h3>';
$content .= "\n" . '<ul style="margin: 0; margin-left: 7px; padding: 0; list-style-type: none;">' . "\n";
for ($i=0; $i<sizeof($information); $i++) {
$content .= '<li>' . $information[$i] . '</li>' . "\n";
}
$content .= '</ul>' . "\n";
$content .= '</div>';
$content .= '<div align="center"><img src="http://www.cartamagicastore.com/images/logo_paypal-cc.jpg" /></div> ';
$content .= '<div align="center"><img src="http://www.cartamagicastore.com/images/wizmark.gif" /></div> '
?>