Home Forums WoodMart support forum Sort by widget

Sort by widget

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #668482

    dti06
    Participant

    Hi,

    I’d like to know if it is possible to define a hook to customize the Woodmart “Sort by” widget. I want to have “default sorting” applied by default and I’d like to remove the 2 crossed out options you can see on the screenshot.
    can you help please?

    Regards

    Attachments:
    You must be logged in to view attached files.
    #668566

    Hello,

    Try to add the following PHP code snippet to the functions.php.

    add_filter( 'woocommerce_catalog_orderby', 'remove_unwanted_sorting_options' );
    function remove_unwanted_sorting_options( $options ) {
        unset( $options['rating'] ); 
        unset( $options['popularity'] ); 
        return $options;
    }

    Best Regards,

    #668658

    dti06
    Participant

    Perfect, thank you very much!

    #668676

    Hello,

    You’re very welcome! If you need anything else, feel free to reach out!

    Thanks for contacting us.
    Have a great day.

    Topic Closed.
    Best Regards,

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘Sort by widget’ is closed to new replies.