Search code examples
phpwordpresswoocommercereadonlycustom-fields

Only allow edit of custom field once per customer on My account > edit account in WooCommerce


I have added a DOB field to the WooCommerce My account section Account details. The field is a date field (date of birth).

The customer can edit and save. Problem is; the customer can edit and save over and over again.

This is a problem because of the discount that I would like to automatically apply based on the DOB date. If the customer can edit this field more than once; they can potentially get a discount each and every day. For obvious reasons, this cannot happen.

I need help in making the custom field editable ONCE and only once per customer. In wp-admin, admins can edit as they see fit - which is ok.

Here is my full code so far:

add_action( 'woocommerce_edit_account_form', 'dob_on_myaccount_form' );
function dob_on_myaccount_form() {

    woocommerce_form_field( 'birthday_field', array (
    'type' => 'date',
    // how do I set the format to be y-m-d as in Year, Month, Day here
    'label' => __('Date of birth', 'woocommerce' ),
    'required' => false,
    ), get_user_meta( get_current_user_id(), 'birthday_field', true ) );
}

add_action( 'woocommerce_save_account_details_errors', 'dob_on_myaccount_form_error', 10, 1 );
function dob_on_myaccount_form_error( $args ) {

    if (isset( $_POST['birthday_field'] ) && empty( $_POST['birthday_field'] ) ) {

        $args->add('error', __( 'Please provide a date of birth', 'woocommerce' ) );
    }
}

add_action( 'woocommerce_save_account_details', 'dob_on_myaccount_form_save', 10, 1 );
function dob_on_myaccount_form_save( $user_id ) {

    if ( isset( $_POST['birthday_field'] ) && !empty( $_POST['birthday_field'] ) ) {

        update_user_meta( $user_id, 'birthday_field', sanitize_text_field( $_POST['birthday_field'] ) );
    }
}

add_action( 'woocommerce_cart_calculate_fees', 'give_birthday_discount', 10, 2 );
function give_birthday_discount( $cart, $date = 'now' ) {

    if ( 'now' === $date ) {

    $date = date( 'Y-m-d' );

    $discount_percentage = 10;

    $cart->add_fee( __( 'Birthday Discount', 'woocommerce' ), -( $cart->subtotal * $discount_percentage / 100 ));
    }
}

add_action( 'show_user_profile', 'dob_on_admin_profile', 10, 1 );
add_action( 'edit_user_profile', 'dob_on_admin_profile', 10, 1 );
function dob_on_admin_profile( $user ) { ?>

    <h3><?php _e('Birthday','woocommerce'); ?></h3>

    <table class="form-table">

        <tr>
            <th><label for="birthday_field"><?php _e('Date of Birth', 'woocommerce'); ?></label></th>
            <td><input type="date" name="birthday_field" value="<?php echo esc_attr(get_the_author_meta('birthday_field', $user->ID)); ?>" class="regular-text" /></td>
        </tr>

    </table>
    <br />
<?php
}

add_action( 'personal_options_update', 'dob_on_admin_profile_save', 10, 1 );
add_action( 'edit_user_profile_update', 'dob_on_admin_profile_save', 10, 1 );
function dob_on_admin_profile_save( $user_id ) {

    if ( ! empty( $_POST['birthday_field'] ) ) {
    
        update_user_meta( $user_id, 'birthday_field', sanitize_text_field( $_POST['birthday_field'] ) );
    }
}

Solution

  • While saving the date field you can save an extra value birthday_field_not_editable

    Then you can check if this value is true, if this is the case, the field is no longer editable (readonly = true).

    Explanation via comment tags added to the code

    // Add field - my account
    function dob_on_myaccount_form() {
        // Label
        $label = __( 'Date of birth', 'woocommerce' );
        
        // Readonly (by default false)
        $readonly = false;
        
        // Get current user id
        $user_id = get_current_user_id();
        
        // Get value
        $not_editable = get_user_meta( $user_id, 'birthday_field_not_editable', true );
        
        // If TRUE
        if ( $not_editable ) {
            $label = __( 'Date of birth - adjustment is no longer possible', 'woocommerce' );
            $readonly = true;
        }
        
        // Date field
        woocommerce_form_field( 'birthday_field', array (
            'type'              => 'date',
            'label'             => $label,
            'required'          => true,
            'custom_attributes' => array( 'readonly' => $readonly ),
        ), get_user_meta( $user_id, 'birthday_field', true ) );
    }
    add_action( 'woocommerce_edit_account_form', 'dob_on_myaccount_form', 10, 0 );
    
    // Validate - my account
    function dob_on_myaccount_form_error( $args ) {
        if ( isset( $_POST['birthday_field'] ) && empty( $_POST['birthday_field'] ) ) {
            $args->add('error', __( 'Please provide a date of birth', 'woocommerce' ) );
        }
    }
    add_action( 'woocommerce_save_account_details_errors', 'dob_on_myaccount_form_error', 10, 1 );
    
    // Save - my account
    function dob_on_myaccount_form_save( $user_id ) {
        if ( isset( $_POST['birthday_field'] ) && ! empty( $_POST['birthday_field'] ) ) {
            // Update birthday field
            update_user_meta( $user_id, 'birthday_field', sanitize_text_field( $_POST['birthday_field'] ) );
            // Update not editable field
            update_user_meta( $user_id, 'birthday_field_not_editable', true );
        }
    }
    add_action( 'woocommerce_save_account_details', 'dob_on_myaccount_form_save', 10, 1 );