• Resolved dylancohen

    (@dylancohen)


    Dear Events Manager Team,

    Today I made an update of your plugin Events Manager Version 5.9.5.1.
    Now the list of attendees does not show any more.

    Attendees List: #_ATTENDEESLIST
    Can you tell me how to resolve this issue.

    Kind regards,

    Remi

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter dylancohen

    (@dylancohen)

    This is a attendeeslist.php file.

    <?php
    /* @var $EM_Event EM_Event */
    $people = array();
    $EM_Bookings = $EM_Event->get_bookings();
    if( count($EM_Bookings->bookings) > 0 ){
    	?>
    	<ul class="event-attendees">
    	<?php
    	foreach( $EM_Bookings as $EM_Booking){ /* @var $EM_Booking EM_Booking */
    		if($EM_Booking->booking_status == 1 && !in_array($EM_Booking->get_person()->ID, $people) ){
    			$people[] = $EM_Booking->get_person()->ID;
    			echo '<li>'. $EM_Booking->get_person()->get_name() .'</li>';
    		}elseif($EM_Booking->booking_status == 1 && $EM_Booking->is_no_user() ){
    			echo '<li>'. $EM_Booking->get_person()->get_name() .'</li>';
    		}
    	}
    	?>
    	</ul>
    	<?php
    }
    
    Thread Starter dylancohen

    (@dylancohen)

    This is the code of:
    Events ==> Settings ==> Formatting ==> Single Event

    <div style="float:right; margin:0px 0px 15px 15px;">#_LOCATIONMAP</div>
    <p>
    	<strong>Date/Time</strong><br/>
    	Date(s) - #_EVENTDATES<br /><i>#_EVENTTIMES</i>
    #_EVENTNOTES
    {has_bookings}
    <h3>Bookings</h3>
    #_BOOKINGFORM
    {/has_bookings}
    <br style="clear:both" />
    {has_location}
    </p>
    <p>
    	<strong>Location</strong><br/>
    	#_LOCATIONLINK
    </p>
    {/has_location}
    <p><strong> Booking:</strong></p>
    <p>You can book your course from <strong>30 days </strong>before the course starts.</p>
    <p><strong> Cancellation:</strong></p>
    <p><strong>No</strong> charge, if a confirmed ticket is cancelled <strong>more than 24 hours before </strong>the scheduled course.
    </p>
    <p>
    	<strong>Categories</strong>
    	#_CATEGORIES
    </p>
    <p>
    	<strong>Attendees List</strong>
    	#_ATTENDEESLIST
    </p>
    <p>
    	<strong>Available Places</strong>
    	#_AVAILABLESPACES
    </p>
    
    <p>
    	<strong>Spaces Booked</strong>
    	#_BOOKEDSPACES
    </p>
    <p>
    	<strong>Pending Spaces</strong>
    	#_PENDINGSPACES
    </p>
    
    Thread Starter dylancohen

    (@dylancohen)

    Dear Events Manager team,

    I got this message in the console. Maybe this will help.

    jquery.datatables.min.js?ver=1.9:24 Uncaught TypeError: Cannot set property '_DT_CellIndex' of undefined
        at Ga (jquery.datatables.min.js?ver=1.9:24)
        at M (jquery.datatables.min.js?ver=1.9:16)
        at HTMLTableRowElement.<anonymous> (jquery.datatables.min.js?ver=1.9:16)
        at jquery.js?ver=1.12.4:2
        at Function.map (jquery.js?ver=1.12.4:2)
        at a.fn.init.map (jquery.js?ver=1.12.4:2)
        at ma (jquery.datatables.min.js?ver=1.9:16)
        at e (jquery.datatables.min.js?ver=1.9:92)
        at HTMLTableElement.<anonymous> (jquery.datatables.min.js?ver=1.9:92)
        at Function.each (jquery.js?ver=1.12.4:2)
    
    Plugin Support angelo_nwl

    (@angelo_nwl)

    just to narrow down the problem and help us debug the issue is it possible to try the following temporarily:

    – deactivating all other plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).

    – switching to the default theme to rule out any theme-specific problems

    Thread Starter dylancohen

    (@dylancohen)

    I already try these options.
    Do you know a way to roll back to a previous version then update to version 5.9.5.1.
    The second issue is when people click on “Send your booking” a paragraph “Booking successfull” appears in green, but people can book twice a same event. Because the option “Send your booking” did not change and close like before.
    The option is set to 1 booking per person and was working fine for the whole last year.

    I got the same issue than in another post that I found here.

    PS’ If I buy the PRO version can you fix quickly this 2 troubles.
    If yes, I buy the PRO version today.
    Cheers,
    Remi

    Plugin Support angelo_nwl

    (@angelo_nwl)

    you can try the latest EM Dev version 5.9.5.2

    For dev version upgrade – https://wp-events-plugin.com/documentation/upgrade-dev-version/

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Attendees List not showing anymore’ is closed to new replies.