AI Verified

Name

Remove WooCommerce Catalog "Orderby" dropdown options

About

Remove the "menu_order", "popularity", "rating", and "date" options from the orderby dropdown in the WooCommerce catalog

Language

PHP

Rating

Voted: 0 by 0 user(s)

Codevault

FP---Codevault

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: 6.1

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

Website/ Profile URL:

https://frankpurcell.co.za

History

Last modified:

26/03/2023

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

Remove WooCommerce Catalog "Orderby" dropdown options

 
                    
1add_filter( 'woocommerce_catalog_orderby', 'woocommerce_custom_catalog_orderby' );
2 
3function woocommerce_custom_catalog_orderby( $args ) {
4 unset ( $args['menu_order'] );
5 unset ( $args['popularity'] );
6 unset ( $args['rating'] );
7 unset ( $args['date'] );
8 return $args;
9}

0

Related Snippets

Please see some snippets below related to this snippet..

WooCommerce

AI Verified

0

WooCommerce Payment Method Fixed Fee

Added: 1 year ago

Last Updated: 1 year ago

Firstly, itโ€™s important to check you with your payment gateway provider and the appropriate laws that you are allowed to pass on fees for specific payment method selection before implementing fees. Th...

WooCommerce

AI Verified

0

Change the arrangement of fields in the checkout area or delete fields

Added: 1 year ago

Last Updated: 1 year ago

Customize the fields in the checkout. You can change the fields in the checkout area, sort them differently or delete individual fields.

WooCommerce

AI Verified

1

WooCommerce Show Fixed Amount Savings On Sale Products

Added: 1 year ago

Last Updated: 1 day ago

This snippet allows you to display the fixed amount monetary value the customer is saving when a product is on sale.

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WooCommerce

AI Verified

1

Remove WooCommerce Lightbox Zoom

Added: 1 year ago

Last Updated: 1 day ago

Remove the zoom and lightbox features from the WooCommerce product gallery.

WooCommerce

AI Verified

0

WooCommerce Shipping Method Button

Added: 1 year ago

Last Updated: 1 year ago

WooCommerce

AI Verified

0

WooCommerce - My Account - Edit Address - Fix

Added: 1 year ago

Last Updated: 1 year ago

Fixes the issue with the "Edit Address" text missing from the user's My Account menu. This happens due to a language conflict when using English (South African/US), however using English (UK) also res...