From The Template Shop.com

Catalog Area
Add Links to Boxes
By oscommerce.info
Oct 21, 2006, 19:32

Introduction
Add link outside of osCommerce to any boxes ... we will use includes/boxes/categories.php for an example.


Add Links to Boxes
In catalog/includes/boxes/categories right before this code at the bottom:

new infoBox($info_box_contents);
?>
</td>
</tr>
< !-- categories_eof //-->

add this:

$info_box_contents[] = array('align' => 'left',
'text' => '<a href="http://www.wherever.com" target="_blank">Text for your link</a>'
);


The code from about line 138 to the end should look like this:

$info_box_contents = array();
$info_box_contents[] = array('align' => 'left',
'text' => $categories_string
);
// start of code to place link inside category box
$info_box_contents[] = array('align' => 'left',
'text' => '<a href="http://www.yourdomain.com" target="_blank">Text for your link</a>'
);
// end of code to place link inside category box
new infoBox($info_box_contents);
?>
</td>
</tr>
< !-- categories_eof //-->



© Copyright by The Template Shop