jasone Posted January 21, 2005 Posted January 21, 2005 Good morning my fellow oscommercers! I would like to remove: Price From: Price To: Date From: Date To: from the advance search page. I would also like to change "Manufacturers:" to something else in the same page. Does anybody know where and how to change this? I?d be grateful for help!
KennethS Posted January 21, 2005 Posted January 21, 2005 In: catalog/advanced_search.php You will need to edit out the following (example): <tr> <td class="fieldKey"><?php echo ENTRY_PRICE_FROM; ?></td> <td class="fieldValue"><?php echo tep_draw_input_field('pfrom'); ?></td> </tr> <tr> <td class="fieldKey"><?php echo ENTRY_PRICE_TO; ?></td> <td class="fieldValue"><?php echo tep_draw_input_field('pto'); ?></td> </tr> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td class="fieldKey"><?php echo ENTRY_DATE_FROM; ?></td> <td class="fieldValue"><?php echo tep_draw_input_field('dfrom', DOB_FORMAT_STRING, 'onFocus="RemoveFormatString(this, \'' . DOB_FORMAT_STRING . '\')"'); ?></td> </tr> <tr> <td class="fieldKey"><?php echo ENTRY_DATE_TO; ?></td> <td class="fieldValue"><?php echo tep_draw_input_field('dto', DOB_FORMAT_STRING, 'onFocus="RemoveFormatString(this, \'' . DOB_FORMAT_STRING . '\')"'); ?></td> </tr> For the Manufacturer I believe the word Manufacturer will need to be modified in the file: catalog/includes/languages/english/advanced_search.php Kenneth S -------------- Customer "Are you a real programmer?" Me "No, but I did stay at a Holiday Inn Express last night"
Recommended Posts
Archived
This topic is now archived and is closed to further replies.