Hi,
Currently, there is no option to change what columns show in the admin appointments table. We’ll note down the ability to do this as a feature suggestion.
Hi,
Thank you! And what do you suggest to have any overview about the appointment details until the next update? I mean, also see the given phone numbers?
Because to collect the email confirmations is not really comfortable solution.
Thank you very much!
Hi,
I’m not quite sure what to suggest. If you need the details of a specific appointment, you just have to click on that appointment in the admin and all the info will be there.
Hi,
There is no possibility for click on the appointment, there is only link for delete it, I checked and if I add some test booking manually with client name, than I can click on the name and check all of the booking infos.
In my system the client can book without names. The name field is not obligatory, therefore it is empty.
Please be so kind and help to fix the problem and enable to see all of the booking infos also in this case, without the name of the client.
Can you maybe add some default name setup to solve the problem?
Thank you!
The name should be mandatory for the appointments. As long as you have a value in the name column, you’ll be able to click on the appointment.
Hi,
In this case the website doesn’t ude the name. Is it possible to define any default name to solve the problem and make the appointments clickable?
Thank you very much!
Yes, but you’d have to update the plugin code. For example, in the “AppointmentsPage.php” file (in the “html” folder), you could remove the following line:
echo "<a class='row-title' href='admin.php?page=EWD-UASP-options&Action=EWD_UASP_AppointmentDetails&Selected=Appointment&Appointment_ID=" . $Appointment->Appointment_ID ."' title='Edit " . $Appointment->Appointment_Client_Name . "'>" . $Appointment->Appointment_Client_Name . "</a></strong>";
and replace it with the following three lines:
$AppointmentClientName = $Appointment->Appointment_Client_Name;
if($AppointmentClientName == '') { $AppointmentClientName = '(no name)'; }
echo "<a class='row-title' href='admin.php?page=EWD-UASP-options&Action=EWD_UASP_AppointmentDetails&Selected=Appointment&Appointment_ID=" . $Appointment->Appointment_ID ."' title='Edit " . $Appointment->Appointment_Client_Name . "'>" . $AppointmentClientName . "</a></strong>";
This will display “(no name)” when nothing is put for the name.