Title: Remove the Sort Dropdown
Last modified: February 25, 2021

---

# Remove the Sort Dropdown

 *  Resolved [raunhar](https://wordpress.org/support/users/raunhar/)
 * (@raunhar)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/remove-the-sort-dropdown/)
 * How do I disable the Dropdown button of Sort order
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fremove-the-sort-dropdown%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 6 replies - 1 through 6 (of 6 total)

 *  Plugin Support [Gabriel – a11n](https://wordpress.org/support/users/gabrielfuentes/)
 * (@gabrielfuentes)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/remove-the-sort-dropdown/#post-14101267)
 * Hi there 👋
 * This can be fixed with some custom CSS. Under **Customize > Additional CSS**,
   you can add the following code:
     
 *     ```
       /* Disable Sort Order dropdown */
       select#wc-block-components-sort-select__select-0 {
           display: none;
       }
       ```
   
 *  
    If you’d like to learn more about CSS, I highly recommend using the [free tutorials at w3schools](https://www.w3schools.com/w3css/).
   Here, you can find the basics of [selectors](https://www.w3schools.com/cssref/css_selectors.asp)(
   how to target the right element on the page), and [properties](https://www.w3schools.com/cssref/)(
   how to change the element on the page).
 * I hope that helps! 🙂
 *  Thread Starter [raunhar](https://wordpress.org/support/users/raunhar/)
 * (@raunhar)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/remove-the-sort-dropdown/#post-14101288)
 * Thanks for the reply. But it did not help.
 *  Plugin Support [Gabriel – a11n](https://wordpress.org/support/users/gabrielfuentes/)
 * (@gabrielfuentes)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/remove-the-sort-dropdown/#post-14104239)
 * That’s strange. Could you please remove the previous code and try the following
   one instead?
 *     ```
       /* Hide products sort */
       .page-id-2913 .wc-block-sort-select.wc-block-components-sort-select.wc-block-product-sort-select.wc-block-components-product-sort-select {
           display: none !important;
       }
       ```
   
 * Cheers!
 *  Thread Starter [raunhar](https://wordpress.org/support/users/raunhar/)
 * (@raunhar)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/remove-the-sort-dropdown/#post-14109141)
 * Sorry, it also didn’t work.
    I am using Cover News free theme, and not using 
   any blocks. The link page is the Woocommerce default Shop page
 *  Plugin Support [Damianne P (a11n)](https://wordpress.org/support/users/drwpcom/)
 * (@drwpcom)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/remove-the-sort-dropdown/#post-14316967)
 * Hi [@raunhar](https://wordpress.org/support/users/raunhar/). Sorry that we missed
   your last response.
 * Are you referring to removing the sorting on [http://nnscommoditynews.com/shop/](http://nnscommoditynews.com/shop/)
   rather the link that you shared before? If so, you can use the following code:
 * /* Hide products sort on shop page */
    .woocommerce .woocommerce-ordering select{
   display:none; }
 *  Thread Starter [raunhar](https://wordpress.org/support/users/raunhar/)
 * (@raunhar)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/remove-the-sort-dropdown/#post-14317737)
 * Thanks. It worked.

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Remove the Sort Dropdown’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504)
 * [WooCommerce](https://wordpress.org/plugins/woocommerce/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce/reviews/)

 * 6 replies
 * 3 participants
 * Last reply from: [raunhar](https://wordpress.org/support/users/raunhar/)
 * Last activity: [5 years, 2 months ago](https://wordpress.org/support/topic/remove-the-sort-dropdown/#post-14317737)
 * Status: resolved