Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created July 15, 2019 08:17
Show Gist options
  • Save yousufansa/cfb21e5df5fc9d8c4e64e26a11722b9d to your computer and use it in GitHub Desktop.
Save yousufansa/cfb21e5df5fc9d8c4e64e26a11722b9d to your computer and use it in GitHub Desktop.
Electro - Remove Catalog Ordering Dropdown from Shop Page
if ( !function_exists( 'electro_child_disable_catalog_ordering_toggle' ) ) {
function electro_child_disable_catalog_ordering_toggle() {
remove_action( 'electro_shop_control_bar', 'woocommerce_catalog_ordering', 20 );
}
}
add_action( 'init', 'electro_child_disable_catalog_ordering_toggle' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment