Skip to content

Instantly share code, notes, and snippets.

@amdrew
Created December 4, 2014 23:19
Show Gist options
  • Select an option

  • Save amdrew/f402f6df0c5d77b06eb1 to your computer and use it in GitHub Desktop.

Select an option

Save amdrew/f402f6df0c5d77b06eb1 to your computer and use it in GitHub Desktop.
EDD Purchase Limits - Automatically set all purchase limits to 1
<?php
function sumobi_edd_set_purchase_limit( $ret, $download_id ) {
return 1;
}
add_filter( 'edd_file_purchase_limit', 'sumobi_edd_set_purchase_limit', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment