Skip to content

Instantly share code, notes, and snippets.

@amdrew
Created January 25, 2014 08:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amdrew/8613551 to your computer and use it in GitHub Desktop.
Save amdrew/8613551 to your computer and use it in GitHub Desktop.
Easy Digital Downloads - Prevent variable pricing options from being checked by default
<?php
function sumobi_edd_price_option_checked( $checked, $download_id, $key ) {
return '';
}
add_filter( 'edd_price_option_checked', 'sumobi_edd_price_option_checked', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment