Home › Forums › Basel support forum › Default Sorting Default Sorting This topic has 10 replies, 2 voices, and was last updated 8 years, 5 months ago by Artem Temos. Viewing 11 posts - 1 through 11 (of 11 total) Author Posts November 30, 2016 at 1:20 am #7384 cgParticipant Hi, Hi can I disable the woocommerce default “Sort by” from the shop page? Thanks. November 30, 2016 at 1:59 am #7385 cgParticipant I found this: .woocommerce-result-count, .woocommerce-ordering { display: none; } But the “Sort By” box still shows. How can I disable/hide it? Thanks. November 30, 2016 at 6:20 am #7387 Artem TemosKeymaster Hello, Thank you for your question. You can disable this widget by placing the following snippet to the functions.php file in your child theme. add_filter( 'basel_use_custom_order_widget', '__return_false', 10 ); Kind Regards XTemos Studio November 30, 2016 at 3:08 pm #7396 cgParticipant 1. I am not a developer, where exactly do I need to add the code in the functions.php? 2. Next time I update the theme, do I need to add the code again? Thanks. November 30, 2016 at 4:55 pm #7401 Artem TemosKeymaster You need to place it at the end of this file in CHILD THEME. And you will not lose this code after parent theme update in the future. Regards November 30, 2016 at 7:33 pm #7403 cgParticipant Done! I added it at the end of the CHILD theme functions.php. Now, it is showing next to the filters (see image attached). How do I disable/hide that? Thanks. Attachments:You must be logged in to view attached files. November 30, 2016 at 9:51 pm #7408 Artem TemosKeymaster Add this to the custom CSS also .shop-loop-head .woocommerce-ordering { display:none!important;} November 30, 2016 at 11:41 pm #7419 cgParticipant The “Showing all 8 results” text is still showing. December 1, 2016 at 5:58 am #7422 Artem TemosKeymaster Add this part also .shop-loop-head .woocommerce-result-count { display:none!important;} December 1, 2016 at 2:08 pm #7434 cgParticipant Perfect. Thanks. December 1, 2016 at 5:06 pm #7441 Artem TemosKeymaster You are welcome! Author Posts Viewing 11 posts - 1 through 11 (of 11 total) You must be logged in to create new topics. Login / Register