Guest Posted October 29, 2006 Posted October 29, 2006 how to remove this link manually without contrib what file that i must edit Shipping & Returns Privacy Notice Conditions of Use Contact Us
ComicWisdom Posted October 29, 2006 Posted October 29, 2006 how to remove this link manually without contribwhat file that i must edit Shipping & Returns Privacy Notice Conditions of Use Contact Us You can remove them just be removing the informationbox link from your template. HOWEVER, depending upon where you are, if you are doing business over the internet, it is a LEGAL requirement to have this information posted in a visible and easily noticeable area!!!! Be careful what you remove. Just between us, remember there are only 10 kinds of people in the world; those who understand binary and those who don't!! Remember, learning is a "do-it-yourself" experience; although, not necessarily a "do-it-BY-yourself" experience. The quickest way to learn is to forget to BACKUP!
bill110 Posted October 29, 2006 Posted October 29, 2006 how to remove this link manually without contribwhat file that i must edit Shipping & Returns Privacy Notice Conditions of Use Contact Us If you want the entire box gone catalog/includes/column_left.php find this code: require(DIR_WS_BOXES . 'information.php'); change to this: //require(DIR_WS_BOXES . 'information.php'); My Contributions Stylesheet With Descriptions Glassy Grey Boxtops Our Products Meta Tags On The Fly Password Protect Admin "No matter where you go....There you are" - Buccaroo Bonsai
Guest Posted October 29, 2006 Posted October 29, 2006 If you want the entire box gone catalog/includes/column_left.php find this code: require(DIR_WS_BOXES . 'information.php'); change to this: //require(DIR_WS_BOXES . 'information.php'); no not delete all just 1 or 2 link not all
bill110 Posted October 29, 2006 Posted October 29, 2006 no not delete all just 1 or 2 link not all ok then catalog/includes/boxes/information.php $info_box_contents = array(); $info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a><br>' . '<a href="' . tep_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a><br>' . '<a href="' . tep_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a><br>' . '<a href="' . tep_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a>'); each line starts with '<a href and ends with . except for the last one that must end in ); just delete the lines you want example $info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a>'); would only give you shipping link My Contributions Stylesheet With Descriptions Glassy Grey Boxtops Our Products Meta Tags On The Fly Password Protect Admin "No matter where you go....There you are" - Buccaroo Bonsai
Guest Posted October 29, 2006 Posted October 29, 2006 ok then catalog/includes/boxes/information.php $info_box_contents = array(); $info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a><br>' . '<a href="' . tep_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a><br>' . '<a href="' . tep_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a><br>' . '<a href="' . tep_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a>'); each line starts with '<a href and ends with . except for the last one that must end in ); just delete the lines you want example $info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a>'); would only give you shipping link thx its work case close
Recommended Posts
Archived
This topic is now archived and is closed to further replies.