wewill
Forum Replies Created
-
Yes it is, on both sites, but I don’t it’s a setting.
It was after a update I think, I can see everything but can’t save the focus keyword, nothing happens.No I don’t use the meta box. Like I said in the first post I can’t save the focus keyword any more. Today this happened to a second site.
Forum: Plugins
In reply to: [Custom Permalinks] Categories Permalink not workingCan I have this code too?
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Images are not workingHi Ron,
I found it, it was something on the server.
I have the WP network with mapping up and running now.Thanks,
RobertForum: Plugins
In reply to: [Simple Popup Plugin] Can I popup posts?But how will the javascript be triggered?
By a class or what?Forum: Plugins
In reply to: [Simple Popup Plugin] Can I popup posts?Can you tell me, which and how?
Forum: Themes and Templates
In reply to: Mystile template ( translation of search products box)I found it its in:
mystile/includes/theme-woocommerce.phpHave fun 😉
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Show attendeesEach person can book 1 or two tickets at once.
In the admin it’s the correct amount.you probably need to add a new array in the foreach loop that adds up the total spaces of every booking per person ID.
I’m not a php person, I find my code on the net.
Can you help me out with this please?Robert
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Show attendeesI’am using it in the code above.
So the code would be:
<?php /* @var $EM_Event EM_Event */ $people = array(); foreach($EM_Event->get_bookings() as $EM_Booking){ $people[$EM_Booking->person->ID] = $EM_Booking->person; } ?> <?php foreach($people as $EM_Person): ?> <?php $user_info = get_userdata($EM_Person->ID); echo "<tr>"; echo "<td >" . $user_info->first_name . " " . $user_info->last_name . "</td>"; echo "<td >" . $user_info->company_name . "</td>"; echo "<td >" . $EM_Booking->get_spaces() . "</td>"; echo "</tr>"; ?> <?php endforeach; ?>$EM_Booking->get_spaces() works but shows only one space, even when a person books two tickets.
Robert
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Show attendeesHi Angelo,
One more question, the list is working fine except I want to show the amount off tickets they booked.
I got this code:
<?php /* @var $EM_Event EM_Event */ $people = array(); foreach($EM_Event->get_bookings() as $EM_Booking){ $people[$EM_Booking->person->ID] = $EM_Booking->person; } ?> <?php foreach($people as $EM_Person): ?> <?php $user_info = get_userdata($EM_Person->ID); echo "<tr>"; echo "<td >" . $user_info->first_name . " " . $user_info->last_name . "</td>"; echo "<td >" . $user_info->company_name . "</td>"; echo "<td > 1 </td>"; echo "</tr>"; ?> <?php endforeach; ?>So instead <td > 1 </td> I want dynamically show the amount off tickets.
This$EM_Booking->get_spaces()doesn’t work.Robert
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Show attendeesok thanks I will try this code.
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Show attendeesOk,
Is it possible to show the latest event on event=”x”?
So I don’t have to change the id all the time.I want to make one page where people go to to see how is coming on that event, there always be only one event running.
Robert
Thanks for everything 😉
Robert
Thanks for all the info 😉
One more thing is it possible to show the list,
Name and the amount off tickets?Now its only showing the name
is this showing the latest event?!
[events_list]#_EVENTNAME #_ATTENDEESLIST[/events_list]