Magento – Change Sort Order

cataloglayoutmagento-1.7

How to change the products sort order from "desc" to "asc" for one particular category?

Is it possible with layout xml?

Best Answer

May be something will work for you, just put this code in your category layout update area.

<reference name="product_list"> 
   <action method="setDefaultDirection">
            <string>desc</string>
   </action>
</reference>