Osclass forums

Support forums => Plugins => Cars attributes => Topic started by: jamesy on June 03, 2014, 01:18:06 pm

Title: How to add new car field to search?
Post 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
Code: [Select]
    <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>
Title: Re: How to add new car field to search?
Post by: jamesy on June 03, 2014, 02:13:04 pm
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.

Code: [Select]
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;
                    }