View Single Post
  #1231  
Old 10-27-2016, 09:44 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart - reBOOT - Responsive Template

Michael, in skin/reboot/customer/main/search_sort_by.tpl

Replace...
Code:
<option{if $name eq $selected && $sort_direction eq 0} selected="selected"{/if} value="{$url}&amp;sort={$name|amp}&amp;sort_direction=0" class="sort_asc">{$field} &uarr;</option> <option{if $name eq $selected && $sort_direction eq 1} selected="selected"{/if} value="{$url}&amp;sort={$name|amp}&amp;sort_direction=1" class="sort_desc">{$field} &darr;</option>
With...
Code:
<option{if $smarty.get.sort eq $name && $smarty.get.sort_direction eq 0} selected="selected"{/if} value="{$url}&amp;sort={$name|amp}&amp;sort_direction=0" class="sort_asc">{$field} &uarr;</option> <option{if $smarty.get.sort eq $name && $smarty.get.sort_direction eq 1} selected="selected"{/if} value="{$url}&amp;sort={$name|amp}&amp;sort_direction=1" class="sort_desc">{$field} &darr;</option>
This works for me, try the demo. Thanks for reporting.
__________________
xcartmods.co.uk
Reply With Quote