Skip to content

Instantly share code, notes, and snippets.

@DustinHartzler
Created March 22, 2016 12:24
Show Gist options
  • Save DustinHartzler/68c316c7898e5f05c97d to your computer and use it in GitHub Desktop.
Save DustinHartzler/68c316c7898e5f05c97d to your computer and use it in GitHub Desktop.
function cs_wc_product_type_options( $product_type_options ) {
$product_type_options['virtual']['default'] = 'yes';
$product_type_options['downloadable']['default'] = 'yes';
return $product_type_options;
}
add_filter( 'product_type_options', 'cs_wc_product_type_options' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment