Osclass forums
Support forums => Themes => Twitter => Topic started by: innoserv on April 16, 2014, 02:52:19 am
-
hello friends i m looking how to add this option
sort by :
Newly listed
Lower price first
Higher price firstto
like modern theme
twitter theme
-
put this where you want it and style accordingly
<?php $orders = osc_list_orders();
foreach($orders as $label => $params) {
$orderType = ($params['iOrderType'] == 'asc') ? '0' : '1'; ?>
<?php if(osc_search_order() == $params['sOrder'] && osc_search_order_type() == $orderType) { ?>
<a class="btn btn-default active current btn-xs" href="<?php echo osc_update_search_url($params) ; ?>"><?php echo $label; ?></a>
<?php } else { ?>
<a class="btn btn-default btn-xs" href="<?php echo osc_update_search_url($params) ; ?>"><?php echo $label; ?></a>
<?php } ?>
<?php if ($i != count($orders)-1) { ?>
<?php } ?>
<?php $i++ ; ?>
<?php } ?>
-
hello
thank you design for your help