Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support angelo_nwl

    (@angelo_nwl)

    if you are using placeholder #_ATTENDEESLIST ? – you can modify it’s template at events-manager/templates/placeholders/attendeeslist.php

    Thread Starter jcbov

    (@jcbov)

    Thank you for your answer,

    maybe could you be a little more specific since my skills in php are limited!

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    you’ll probably need to hire a developer to help you with this

    Thread Starter jcbov

    (@jcbov)

    hello,
    we’ve found a solution, thanks for the hint. Here is the modyfied code
    ‘ <?php
    $guest_bookings = get_option(‘dbem_bookings_registration_disable’);
    $guest_booking_user = get_option(‘dbem_bookings_registration_user’);
    foreach( $EM_Bookings as $EM_Booking){
    if($EM_Booking->status == 1 && !in_array($EM_Booking->get_person()->ID, $people) ){
    $people[] = $EM_Booking->get_person()->ID;
    echo ‘

    • ‘. $EM_Booking->get_person()->get_name(). ‘ ‘ .$EM_Booking->get_person()->phone .’
    • ‘;
      }elseif($EM_Booking->status == 1 && $guest_bookings && $EM_Booking->get_person()->ID == $guest_booking_user ){
      echo ‘

    • ‘. $EM_Booking->get_person()->get_name(). ‘ ‘ .$EM_Booking->get_person()->phone .’
    • ‘;
      }
      }
      ?>’

      may help someone else,

      best regards

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘displaying #_BOOKINGPHONE in tooltip monthly calendar’ is closed to new replies.