Code-Snippets-Functions/Execute a function on a child site/Easy Digital Downloads/remove-discount-field.txt

4 lines
167 B
Text

function pw_edd_remove_discount_field() {
remove_action( 'edd_checkout_form_top', 'edd_discount_field', -1 );
}
add_action( 'init', 'pw_edd_remove_discount_field' );