heartandsoul Posted December 19, 2004 Share Posted December 19, 2004 Hi, my site is perfumes. In the Categories box on the left, I have the following links :- For ladies -> For mens -> How do I modify the code so that it includes a "Home" link to bring me back to the main page ? eg. so the category box looks like this :- Home For ladies -> For mens -> I believe the file to edit is in \includes\boxes\categories.php but unsure what to edit/add. Link to comment Share on other sites More sharing options...
heartandsoul Posted December 22, 2004 Author Share Posted December 22, 2004 Can anyone assist please ? Link to comment Share on other sites More sharing options...
boxtel Posted December 22, 2004 Share Posted December 22, 2004 Can anyone assist please ? <{POST_SNAPBACK}> in categories.php at the bottom you will find this code : $info_box_contents = array(); $info_box_contents[] = array('align' => 'left', 'text' => $categories_string ); new infoBox($info_box_contents); you can change that in : $info_box_contents = array(); $info_box_contents[] = array('align' => 'left', 'text' => '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">Home</a><br>' . $categories_string ); new infoBox($info_box_contents); Treasurer MFC Link to comment Share on other sites More sharing options...
heartandsoul Posted December 23, 2004 Author Share Posted December 23, 2004 Very Much appreciated. That did the job. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.