Created
March 22, 2016 12:24
-
-
Save DustinHartzler/68c316c7898e5f05c97d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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