Recently, I just tried to make other field to works properly. But in search form how do I make it work?
Here is the current code that without proper search result
<div class="row one_input">
<h6><?php _e('Condition', 'cars_attributes'); ?></h6>
<?php $condition = Params::getParam('condition') ; ?>
<select name="condition" id="condition">
<option value=""><?php _e('Select a condition', 'cars_attributes'); ?></option>
<option value="USED" <?php if($condition == 'USED') { echo 'selected'; } ?>><?php _e('Used', 'cars_attributes'); ?>
<option value="NEW" <?php if($condition == 'NEW') { echo 'selected'; } ?>><?php _e('New', 'cars_attributes'); ?>
</option>
</select>
</div>