I was working on the quick search block on the main page (templates/base/scripts/BxBaseIndex.php) and doing pretty good untill I wanted to make it do something different.. lol
I now one of my fields edited to look like:
//Third Search Field
$ret .= '<div class="qsi_line" style="text-align:center; margin-top:3px;">';
$ret .= '<div class="qsi_first">';
$ret .= '<label for="qsi_City">' . _t("City") . '</label>:';
$ret .= '</div>';
$ret .= '<div class="qsi_second">';
$ret .= '<input type="textbox" name="City" id="qsi_City" /> ';
$ret .= '</div>';
$ret .= '</div>';
Lets just say for ease of posting that I have 2 different fields. 1 called "City" and one called "City2". How could I make it so that this one search box will search both "City" and "City2"?
Thanks in advance,
Travis