Forum Replies Created
-
I configured two Xerox printers (WC 5875 and W 7835), with latest fimware installed, to scan on a windows shared folder using SMB protocol.
The scan is working normally. But users experience this “interface” issue: is not possible to use SPACE character on the file name. The space bar is disabled on the printer screen when users try to modify the standard file name.
Is it a software limitation? Is it related with SMB protocol? Is it possible to enable space in file name?
Thanks in advance for assistance.
add_action(‘bp_after_profile_edit_content’,’edit_appointment_settings_xprofile’);
// Displays Editable Fields for Appointments+ email and phone
function edit_appointment_settings_xprofile(){
// Only Logged in users can make these edits
$profileuser = wp_get_current_user();?>
<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>
<?
}