Jump to content

Remove one option from the sort-by list


Recommended Posts

I think you will have to modify the theme file.

YourSiteRoot/themes/YourSiteTheme/product-sort.tpl

You can remove the line physically or just comment it out.

To comment it out, use {* and *} to embrace the code. Below is comment out sorting by name

{*

   <option value="{$link->addSortDetails($request, 'name', 'asc')|escape:'htmlall':'UTF-8'}" {if $orderby eq 'name' AND $orderway eq 'asc'}selected="selected"{/if}>{l s='Product Name: A to Z'}</option>
   <option value="{$link->addSortDetails($request, 'name', 'desc')|escape:'htmlall':'UTF-8'}" {if $orderby eq 'name' AND $orderway eq 'desc'}selected="selected"{/if}>{l s='Product Name: Z to A'}</option>

*}

Link to comment
Share on other sites

×
×
  • Create New...