Skip to content

Instantly share code, notes, and snippets.

@ivo-ivanov
Created December 2, 2020 17:49
Show Gist options
  • Save ivo-ivanov/fc051ce5ec42da783d33414770fedc76 to your computer and use it in GitHub Desktop.
Save ivo-ivanov/fc051ce5ec42da783d33414770fedc76 to your computer and use it in GitHub Desktop.
Remove any placeholder from woocommerce filter
// Remove any placeholder from woocommerce filter
add_filter ( 'woocommerce_layered_nav_any_label' , 'remove_any' , 10 , 3 ) ;
function remove_any ( $sprintf , $taxonomy_label , $taxonomy ) {
$sprintf = sprintf ( __ ( '%s' , 'woocommerce' ) , $taxonomy_label );
return $sprintf ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment