Osclass forums
Support forums => Plugins => Cars attributes => Topic started by: jamesy on June 03, 2014, 01:18:06 pm
-
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>
-
I've just solved this problem by adding code below in index.php.. I don't know if this is correct way to do so.
case 'condition':
if( $value == 'USED' || $value == 'NEW' ) {
Search::newInstance()->addConditions(sprintf("%st_item_car_attr.e_condition = '%s'", DB_TABLE_PREFIX, $value));
$has_conditions = true;
}