====== Adding Hyperlinks to External Sites to Side Boxes ====== Edit the code in whatever sidebox that you want to add the link to. Say you want to add a link to the 'Information' side box. Edit the sidebox file information.php located in /catalog/includes/boxes/ You will see the following code: $info_box_contents[] = array('align' => 'left', 'text' => '' . BOX_INFORMATION_SHIPPING . '
' . '' . BOX_INFORMATION_PRIVACY . '
' . '' . BOX_INFORMATION_CONDITIONS . '
' . '' . BOX_INFORMATION_CONTACT . '
');
If you want to make your new link be the first one in the 'Information' box, add this new line : 'AABox Web Hosting
' .
Directly before this line: '' . BOX_INFORMATION_SHIPPING . '
' .
So the final code block would look like this: $info_box_contents[] = array('align' => 'left', 'text' => 'AABox Web Hosting
' . '' . BOX_INFORMATION_SHIPPING . '
' . '' . BOX_INFORMATION_PRIVACY . '
' . '' . BOX_INFORMATION_CONDITIONS . '
' . '' . BOX_INFORMATION_CONTACT . '
');
Save it, then upload it back to the server. Load the main catalog page, and you will see your new link in Information side box, right at the top!