RE: Newb: need help with external links

Nils P. <[email protected]> 13 Sep 2003 20:18:58 -0000
Newsgroups gmane.comp.web.oscommerce.general
Message-ID <debe991036dbd470ebcf33c696721caf@osCommerce-Forums>
This message was sent from: General Support
http://forums.oscommerce.com/viewtopic.php?p=229004#229004
----------------------------------------------------------------

Thats pretty easy, just go to the catalog/includes/boxes/categories.php  and scroll all the way down.

Just above from where it says
[code]  $info_box_contents = array();
  $info_box_contents[] = array('text' => $categories_string);

  new infoBox($info_box_contents);
?>[/code]
you could add something like this
[code]$categories_string .= '<br><a href="...">link 1</a><br><a href="...">link 2</a>';
[/code]
... fill in your own URLs and link names and change the HTML as you like.

Good luck, 
Nils