Skip to content

Instantly share code, notes, and snippets.

View davidwolfpaw's full-sized avatar

david wolfpaw davidwolfpaw

View GitHub Profile
@davidwolfpaw
davidwolfpaw / EDD_download_pre-restricted
Created August 4, 2014 15:21
Make pages automatically checked private in EDD, and select specific download buyers to restrict to
// Make pages automatically checked private in EDD, and select specific download buyers to restrict to
// Change val("86") to the option that you want pre-selected
add_action( 'admin_head', 'pw_edd_cr_admin_head', 20 );
function pw_edd_cr_admin_head() {
echo '<script type="text/javascript">jQuery(function($){ $("#edd_cr_active_only").attr("checked", "1"); $("#edd_cr_download_id").val("86"); });</script>';
}