all,
Theme Bender
I modified the code to turn the city auto-complete in the Search Sidebar to Drop-Down.
However, after hitting the 'Apply' button the results do not take into consideration the value in the 'City' dropdown. Any idea why?
Replaced this code in search-sidebar.php:
<div class="row">
<input class="select" type="text" id="sCity" name="sCity" value="<?php echo osc_esc_html(osc_search_city()); ?>" />
</div>
with this:
<div class="control-group">
<label class="control-label" for="city"><?php _e('City', 'bender'); ?></label>
<div class="controls">
<?php ItemForm::city_select (osc_search_cities(), osc_user()); ?>
</div>