• Hi,

    Thank you again for the great plugin!

    I have only one more question. The phone Nr. field is optional on the booking page, but it is important. Unfortunately, the appointments table doesn’t show the phone numbers, this column is empty.

    At this stage I receive the phone infos by email, but it would be important to see these also in the appointmens menu (table).

    Thank you very much!

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Contributor etoilewebdesign

    (@etoilewebdesign)

    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.

    Thread Starter Webfolio Webdesign

    (@webreneszansz)

    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!

    Plugin Contributor etoilewebdesign

    (@etoilewebdesign)

    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.

    Thread Starter Webfolio Webdesign

    (@webreneszansz)

    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!

    Plugin Contributor etoilewebdesign

    (@etoilewebdesign)

    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.

    Thread Starter Webfolio Webdesign

    (@webreneszansz)

    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!

    Plugin Contributor etoilewebdesign

    (@etoilewebdesign)

    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.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Appointment table doesn’t show the phone Nr.’ is closed to new replies.