Posts

Showing posts from April 12, 2011

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>' .               '</div>';

Oscommerce disable header buttons login cart

I needed to disable the cart function of the oscommerce first step is disable the most visible item the login, checkout buttons In stylsheet.css find this add the display: none; #headerShortcuts {   display: none;   float: left;   margin-top: 5px; }