Magento 1.9 – Add More Options to ‘Sort By’ in Product Listings

magento-1.9product-listsorting

I want to add more options in the 'sort by' box. How can I add these and what are other options to add there?

enter image description here

In this image there are 2 options, Name and Price. How can I add more options?

Best Answer

To sort by other attributes, you have to do make the attribute sortable:

go to Catalog > Attributes > Manage Attributes, select the attribute that you want to add to the "Sort by" menu and set "Used for Sorting in Product Listing" to "Yes":

screenshot

If this does not work, your theme might have changed the default dropdown. In this case, search for "setAvailableOrders" in the theme layout files and add the following lines below that action:

<action method="addOrderToAvailableOrders" translate="label">
    <code>YOUR_ATTRIBUTE_CODE</code>
    <label>YOUR_ATTRIBUTE_LABEL</label>
</action>
Related Topic