if using sideboxes/search.php, how can i disable "advanced search"?
looking at the code for tpl_search.php i see it establish but not sure what to do to disable it or if this is the right approach. the code looks like this...
// $Id: tpl_search.php 277 2004-09-10 23:03:52Z wilt $
//
$content = "";
$content .= zen_draw_form('quick_find', zen_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get');
$content .= zen_draw_hidden_field('main_page',FILENAME_ADVANCED_SEARCH_RESULT);
$content .= zen_draw_hidden_field('search_in_description', '1');
$content .= '<div align="center">' . zen_draw_input_field('keyword', '', 'size="18" maxlength="100" style="width: ' . ($column_width-30) . 'px"') . '<br /><input type="submit" value="' . HEADER_SEARCH_BUTTON . '" style="width: 50px" /><br /><a href="' . zen_href_link(FILENAME_ADVANCED_SEARCH) . '">' . BOX_SEARCH_ADVANCED_SEARCH . '</a>';
$content .= "</div></form>";
?>
i tried a couple things but i dont really know my php and they did not get the proper results.