Removing Category Sort

Hi

Is there a way of removing the category sort functions for just one category. I would like to keep it on other categories but remove it from just one. I am on version 3.0.5 but considering an upgrade.

[quote name='hallwoodt' timestamp='1414052401' post='194978']

Hi

Is there a way of removing the category sort functions for just one category. I would like to keep it on other categories but remove it from just one. I am on version 3.0.5 but considering an upgrade.

[/quote]



Try to open the skins/basic/customer/views/categories/view.tpl file and replace:



{include file="`$layouts.$selected_layout.template`" columns=`$product_columns`}




with



{if $category_data.category_id == 123}
{include file="`$layouts.$selected_layout.template`" columns=`$product_columns` no_sorting=true}
{else}
{include file="`$layouts.$selected_layout.template`" columns=`$product_columns`}
{/if}




where 123 - is the ID of the required category



And do not forget to clear a cache

perfect. Thanks for your help.

[quote name='hallwoodt' timestamp='1414432954' post='195374']

perfect. Thanks for your help.

[/quote]



You are welcome!