Skip to content

Instantly share code, notes, and snippets.

@tuanbbhero
Created February 28, 2019 03:20
Show Gist options
  • Save tuanbbhero/93c6dec8ac86f341a3d6cead28b70b29 to your computer and use it in GitHub Desktop.
Save tuanbbhero/93c6dec8ac86f341a3d6cead28b70b29 to your computer and use it in GitHub Desktop.
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
/* For StoreFront Theme */
add_action( 'init', 'bbloomer_delay_remove_result_count' );
function bbloomer_delay_remove_result_count() {
remove_action( 'woocommerce_after_shop_loop', 'woocommerce_result_count', 20 );
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment