klant

[scwb_customer_info id=”1″]
[scwb_maintenance_schedule id=”1″]

// Create the customer dashboard page function custom_customer_dashboard() { if ( ! is_user_logged_in() ) { wp_redirect( home_url() ); exit; } $current_user = wp_get_current_user(); $customer_info = get_customer_info( $current_user->ID ); ?>

Customer Information

First Name: first_name; ?>

Last Name: last_name; ?>

Email: email; ?>

Phone: phone; ?>

Address: address; ?>

Start Date: start_date; ?>

End Date: end_date; ?>

Maintenance Moments: maintenance_moments; ?>

approval_status, 1 ); ?>>
ID, $approval_status ); echo '

Your approval status has been updated.

'; } }