excelconnection Posted February 2, 2010 Share Posted February 2, 2010 Hi, Anyone knows how to re-arrange the template Information navigation bar where the Shipping & Returns, Privacy Notice and so on... :blink: Thank you. Link to comment Share on other sites More sharing options...
multimixer Posted February 2, 2010 Share Posted February 2, 2010 Yes, I know, but I don't know how your look like My community profile | Template system for osCommerce - New: Responsive | Feedback channel Link to comment Share on other sites More sharing options...
excelconnection Posted February 2, 2010 Author Share Posted February 2, 2010 Yes, I know, but I don't know how your look like Hey George, So where in File Manager to change the information and how? My website is earthtronic.com Link to comment Share on other sites More sharing options...
multimixer Posted February 2, 2010 Share Posted February 2, 2010 There is absolutely nothing to do in the filemanager. Make a local copy of all your files, find proper tools (php editor and ftp program = free o the net) make always a backup of any file before editing and always upload files, never download them, they can be damaged by a hacker or something. After this all is done, go to file includes/boxes/information.php. There is the info you want My community profile | Template system for osCommerce - New: Responsive | Feedback channel Link to comment Share on other sites More sharing options...
Guest Posted February 2, 2010 Share Posted February 2, 2010 There is absolutely nothing to do in the filemanager. Just to stress that point a bit more, you may want to read this. Security Link to comment Share on other sites More sharing options...
excelconnection Posted February 2, 2010 Author Share Posted February 2, 2010 Thank you. If anyone is wondering how to arrange the Information box. Then go to boxs > information.php... Re-arrange the order... I arrange mine like this... <?php $info_box_contents = array(); $info_box_contents[] = array('text' => BOX_HEADING_INFORMATION); new infoBoxHeading($info_box_contents, false, false); $info_box_contents = array(); $info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a><br>' . '<a href="' . tep_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a><br>' . '<a href="' . tep_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a><br>' . '<a href="' . tep_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a>'); new infoBox($info_box_contents); ?> Link to comment Share on other sites More sharing options...
multimixer Posted February 3, 2010 Share Posted February 3, 2010 This box is nothing more than a collection of links. If you want you can add more links to more pages. Or you can cancel the box at all and use the links directly, for example in the footer or wherever. Other idea is, instead of having the list created by <br> to make a better styling adding some <div> and css definitions My community profile | Template system for osCommerce - New: Responsive | Feedback channel Link to comment Share on other sites More sharing options...
excelconnection Posted February 4, 2010 Author Share Posted February 4, 2010 This box is nothing more than a collection of links. If you want you can add more links to more pages. Or you can cancel the box at all and use the links directly, for example in the footer or wherever. Other idea is, instead of having the list created by <br> to make a better styling adding some <div> and css definitions Oh, so how can I add additional links? :huh: Link to comment Share on other sites More sharing options...
multimixer Posted February 4, 2010 Share Posted February 4, 2010 Oh, so how can I add additional links? :huh: Just copy an existing one and change destination and text. What link to you want? My community profile | Template system for osCommerce - New: Responsive | Feedback channel Link to comment Share on other sites More sharing options...
theherbman Posted February 4, 2010 Share Posted February 4, 2010 Just copy an existing one and change destination and text. What link to you want? Are they not all in english p.h.p.or what ever language you use. Well thats where I changed all mine. Shipping to deliverys for example. Anything with U.S.spelling in fact. Regards Mel Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.