Posts

Showing posts with the label oscommerce contact us

Oscommerce disable un -needed links in Information Box

To remove un-necessary items edit catalog/includes/modules/boxes/ bm_information.php find the lines you dont need Below is the code: $data = '<div class="ui-widget infoBoxContainer">' .               '  <div class="ui-widget-header infoBoxHeading">' . MODULE_BOXES_INFORMATION_BOX_TITLE . '</div>' .               '  <div class="ui-widget-content infoBoxContents">' . IN THE MIDDLE OF THIS ARE SOME CODES AND LINKS I DON NEED  I ONLY NEED CONTACT US SO I DELETED THE OTHER STUFF DELETE HERE               '    <a href="' . tep_href_link(FILENAME_CONTACT_US) . '">' . MODULE_BOXES_INFORMATION_BOX_CONTACT . '</a>' .               '  </div>' .  ...