Home Forums WoodMart support forum Remove “Sort by Price” Option

Remove “Sort by Price” Option

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #419599

    Hello,

    Let me know how to remove the following options from the Shop Page:
    Sort by Price: Low to High
    Sort by Price: High to Low

    URL: https://informaticsdigitallibrary.com/publications

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

    Hello,

    Sorry to say but this is the default WooCommerce Sorting and to hide any of the values from it, it would require a Code Snippet from the WooCommerce end.

    Although, you can try out the following Custom CSS in this regard and see if this works out for you or not:

    .woocommerce-ordering select option:nth-child(4) {
        display: none !important;
    }
    
    .woocommerce-ordering select option:nth-child(5) {
        display: none !important;
    }

    Location to paste Custom CSS, go to Dashboard >> Theme Settings >> Custom CSS >> Global CSS section >> paste the CSS.

    Best Regards

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