How To

Magento 2: How to Change Default Sort Order from Ascending to Descending for Product Listing in Category Page?

Hello Magento Friends,

In today’s blog, we will learn about How to Change Default Sort Order from Ascending to Descending in Magento 2.

In Magento 2, the default product listing in the category page shows the default filter option in ascending to descending order. But if you want to set the sort order from descending to ascending, you can use the below steps. 

Steps to Change Default Sort Order from Ascending to Descending in Magento 2:

Step 1: Create app\design\frontend\Themes\Yourtheme\Magento_Catalog\layout\catalog_category_view.xml or you can override the catalog_category_view.xml file in your custom extension at the below location

app\code\Vendor\Extension\view\frontend\layout\catalog_category_view.xml 

Now add the code as below

<?xml version="1.0"?>

<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="2columns-left" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <body>
 <referenceContainer name="content">
  <referenceBlock class="Magento\Catalog\Block\Product\ListProduct" name="category.products.list">
   <action method="setDefaultDirection">
    <argument name="dir" xsi:type="string">desc</argument>
   </action>
  </referenceBlock>
 </referenceContainer>
    </body>
</page>

Conclusion:

Hence, with the help of the above method, you can easily change the order of product listing in the category page from ascending to descending in Magento 2. To configure product listings in Magento 2 – Click Here!

Share your doubts with me through the comment section, and stay with us for more Magento solutions.

Happy Coding!

Click to rate this post!
[Total: 2 Average: 5]
Dhiren Vasoya

Dhiren Vasoya is a Director and Co-founder at MageComp, Passionate 🎖️ Certified Magento Developer👨‍💻. He has more than 9 years of experience in Magento Development and completed 850+ projects to solve the most important E-commerce challenges. He is fond❤️ of coding and if he is not busy developing then you can find him at the cricket ground, hitting boundaries.🏏

View Comments

Recent Posts

How to Integrate ChatGPT with Laravel Application?

In this guide, we'll explore how to integrate ChatGPT, an AI-powered chatbot, with a Laravel…

3 days ago

What are Net Sales? How to Calculate Your Net Sales?

In the world of business, understanding financial metrics is crucial for making informed decisions and…

5 days ago

Magento 2 Extensions Digest April 2024 (New Release & Updates)

Welcome to the MageComp Monthly Digest, where we bring you the latest updates, releases, and…

5 days ago

The ABCs of Geofencing: Definition, Features and Uses

In this era, businesses are always on the lookout for ways to engage with their…

6 days ago

How to Delete Product Variant in a Shopify Remix App using GraphQL Mutations?

Managing a Shopify store efficiently involves keeping your product catalog organized. This includes removing outdated…

7 days ago

6 Innovative Tools Revolutionizing E-Commerce Operations

E-commerce has transformed the way consumers shop for products and services and interact with businesses.…

1 week ago