Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. // This snippet must be more or less public domain, because you can find it from several sources
  2. // It is not coded by me, I just copied the snippet from somewhere
  3. // Paste it in functions.php or use some custom functions plugin like Code Snippet
  4. add_filter( 'woocommerce_dropdown_variation_attribute_options_args', 'ec_filter_dropdown_args', 10 );
  5.  
  6. function ec_filter_dropdown_args( $args ) {
  7. $args['show_option_none'] = 'Choose...';
  8. return $args;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement