@ahmadsuhaib
5 years, 4 months ago
Hey this is how you can do it:
?> <h3><?php _e(“Appointments+ Settings”, ‘appointments’); ?></h3> <form method=”post” action =” “id=”appointment-edit-form” class=”standard-form”> <table class=”form-table”> <tr> <th><label><?php _e(“My email for A+”, ‘appointments’); ?></label></th> <td> <input type=”text” style=”width:25em” name=”app_email” value=”<?php echo get_user_meta( $profileuser->ID, ‘app_email’, true ) ?>” <?php echo $is_readonly ?> /> </td> </tr> <tr> <th><label><?php _e(“My Phone”, ‘appointments’); ?></label></th> <td> <input type=”text” style=”width:25em” name=”app_phone” value=”<?php echo get_user_meta( $profileuser->ID, ‘app_phone’, true ) ?>”<?php echo $is_readonly ?> /> </td> </tr> <input name=”action” type=”hidden” value=”save_xprofile” /> // Add other fields like location etc .. here if needed
</table> <div class=”submit”> <input type=”submit” action = “” name=”appointment-edit-form-submit” id=”appointment-edit-form-submit” value=”Save” /> </div> <? https://www.jlsprockets.com/