Jump to content

[Solved] How to deactivate sort option ?


Rhobur

Recommended Posts

You need to change the theme file /themes/yoursitetheme/category.tpl file.
You need to comment out one line. See below

Before change

   {if $products}
           {include file=$tpl_dir./product-sort.tpl}
           {include file=$tpl_dir./product-list.tpl products=$products}
           {include file=$tpl_dir./pagination.tpl}



After change

   {if $products}
           {*include file=$tpl_dir./product-sort.tpl*}
           {include file=$tpl_dir./product-list.tpl products=$products}
           {include file=$tpl_dir./pagination.tpl}

Link to comment
Share on other sites

Thank you shokinro and whitelighter, you were right, the smarty cache was emptied but after I've deleted the content of smarty/compile the dropdown dissapeared; it seems that everyday i have something to learn from. Thanks again guys for your time and especially shokinro for the initial solution !

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...