VPSsupport Posted September 12, 2005 Share Posted September 12, 2005 Hello, Can someone point me in the right direction for changing the information box > shipping & returns to shipping. I would like to do this by hand and not by a contriution. I have searched the forums for this answer but can not seem to find the answer. I am sure it is there somewhere! Thanks Regards, Clive Link to comment Share on other sites More sharing options...
Bud Fox Posted September 12, 2005 Share Posted September 12, 2005 That text is in shipping.php: define('NAVBAR_TITLE', 'Shipping & Returns'); define('HEADING_TITLE', 'Shipping & Returns'); Just change to whatever you like. Link to comment Share on other sites More sharing options...
VPSsupport Posted September 12, 2005 Author Share Posted September 12, 2005 That text is in shipping.php: define('NAVBAR_TITLE', 'Shipping & Returns'); define('HEADING_TITLE', 'Shipping & Returns'); Just change to whatever you like. <{POST_SNAPBACK}> How do I change the name in the actual infobo the above only changes the page title etc Regards, Clive Link to comment Share on other sites More sharing options...
dahui Posted September 12, 2005 Share Posted September 12, 2005 try this: $info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a><br>' . search that in catalog/includes/boxes/information.php and change it to $info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_SHIPPING) . '">' . INFOBOX_SHIPPING . '</a><br>' . in shipping.php define('NAVBAR_TITLE', 'Shipping & Returns'); define('HEADING_TITLE', 'Shipping & Returns'); //add define('INFOBOX_SHIPPING', 'Shipping'); workz for me ;) dahui Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.