• Hi,
    How can i set the email field to not be required?

    I mean that how to make the email field optional during checkout?

Viewing 1 replies (of 1 total)
  • Hi,

    I am not sure what you are trying to do but as per my view email address should be there.

    You can remove email required field by below code

    function _edd_payments_table_columns( $required_fields ) {
    
    	unset( $required_fields['edd_email'] );
    	return $required_fields;
    }
    add_filter( 'edd_purchase_form_required_fields', '_edd_purchase_form_required_fields' );
Viewing 1 replies (of 1 total)
  • The topic ‘Modifying the Required Checkout Field Email’ is closed to new replies.