Variable Pricing Dropdown

function edd_library_variable_price_dropdown() { function shoestrap_edd_purchase_variable_pricing( $download_id ) { $variable_pricing = edd_has_variable_prices( $download_id ); if ( ! $variable_pricing ) return; $prices = apply_filters( ‘edd_purchase_variable_prices’, edd_get_variable_prices( $download_id ), $download_id ); $type = edd_single_price_option_mode( $download_id ) ? ‘checkbox’ : ‘radio’; do_action( ‘edd_before_price_options’, $download_id…Continue reading

Variable Pricing Dropdown

function edd_library_variable_price_dropdown() { function shoestrap_edd_purchase_variable_pricing( $download_id ) { $variable_pricing = edd_has_variable_prices( $download_id ); if ( ! $variable_pricing ) return; $prices = apply_filters( ‘edd_purchase_variable_prices’, edd_get_variable_prices( $download_id ), $download_id ); $type = edd_single_price_option_mode( $download_id ) ? ‘checkbox’ : ‘radio’; do_action( ‘edd_before_price_options’, $download_id…Continue reading

Price Option Not Checked

function sumobi_edd_price_option_checked( $checked, $download_id, $key ) { return ”; } add_filter( ‘edd_price_option_checked’, ‘sumobi_edd_price_option_checked’, 10, 3 );Continue reading

Variable Pricing Dropdown

function edd_library_variable_price_dropdown() { function shoestrap_edd_purchase_variable_pricing( $download_id ) { $variable_pricing = edd_has_variable_prices( $download_id ); if ( ! $variable_pricing ) return; $prices = apply_filters( ‘edd_purchase_variable_prices’, edd_get_variable_prices( $download_id ), $download_id ); $type = edd_single_price_option_mode( $download_id ) ? ‘checkbox’ : ‘radio’; do_action( ‘edd_before_price_options’, $download_id…Continue reading

Enable Downloads in the WP REST API

/** * Adds additional arguments into the post type registration for downloads. * * @param array $download_args The existing array of arguments. * * @return array */ function eddwp_add_rest_for_dls( $download_args ) { $download_args[‘show_in_rest’] = true; $download_args[‘rest_base’] = ‘downloads’; return $download_args;…Continue reading

Remove Product Notes For Specific Downloads

function sumobi_edd_remove_product_notes( $notes, $download_id ) { // enter the download IDs you’d like to exclude into this array $downloads_to_exclude = array( 509, 104, 435 ); if ( in_array( $download_id, $downloads_to_exclude ) ) { return false; } return $notes; } add_filter(…Continue reading

Remove Price

function pw_edd_remove_price( $args ) { $args[‘price’] = ‘no’; return $args; } add_filter( ‘edd_purchase_link_defaults’, ‘pw_edd_remove_price’ );Continue reading

Taxonomy Count

// adjust downloads taxonomy loop function custom_download_tag_count( $query ) { if ( ( $query->is_tax( ‘download_category’ ) || $query->is_tax( ‘download_tag’ ) ) && ! is_admin() && $query->is_main_query() ) { // replace 15 with desired amount $query->set( ‘posts_per_page’, 15 ); } }…Continue reading

Remove Free Text

function pw_edd_remove_free( $form, $args ) { $form = str_replace( ‘Free – Purchase’, ‘Purchase’ , $form ); return $form; } add_filter( ‘edd_purchase_download_form’, ‘pw_edd_remove_free’, 10, 2 );Continue reading

Enable Comments

function pw_edd_comments() { add_post_type_support( ‘download’, ‘comments’ ); } add_action( ‘init’, ‘pw_edd_comments’, 999 );Continue reading