Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    Theme functions: remove_action( 'woocommerce_pagination', 'woocommerce_catalog_ordering', 20 );

    tried adding this to functions.php and still showing
    using mayashop theme, could this be an issue with the theme?

    I want to hide\remove the product sort box from category display

    hello.
    to get rid the sorting menu, just simply put this css code

    .woocommerce_ordering{
    display:none;
    }

    but, still dont know how to set so the product will be shown by default sorting in the product page.

    Theme functions: remove_action( ‘woocommerce_pagination’, ‘woocommerce_catalog_ordering’, 20 );

    This in functions.php did the trick for me.

    I went the way of CSS

    Go to Appearance->Editor
    Click on custom.css (at the very bottom right list)

    Add this:

    .orderby{
    display:none;
    }

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: WooCommerce – excelling eCommerce] Product Sorting’ is closed to new replies.