Reply to: tickets(381744)

How do I do that? It’s not showing as needing to update in the Dashboard.

Is there a place to do this update manually?

Reply to: tickets(382969)

Wow Jeroen, thank you for pointing this out. All these years since 2011 to be precise no one has had this issue 🙂 Allow us sometime to get this sorted out for the next version release 4.9.2 🙂 should be able to get this out this week.

Reply to: tickets(382548)

We can create a CRON on our server but what should we set up exactly? What’s the command and the time settings?

Reply to: tickets(383243)

Once I am in I am confident I can get this running

so to save some time

what users do you want to access the form- or do you want every user to access the form

or do you want even those not logged in to access the form

Reply to: tickets(379701)

Ulrich, what is the invoice plugin you are using, that program is not getting the correct ticket prices. 

Reply to: tickets(378380)

Because eventON is passing the L2 value correctly into AJAX to get events that have L2 value set to. But it is not returning any event posts because something is being done which stops returning those event posts. 

Reply to: tickets(378380)

Hello Karine, I am also hoping it is something we can fix from EventON. But I am not finding any ways how to. 

If you look the calendar when we set to load events without AJAX at first, the march events load fine. But when you switch event using AJAX, it doesnt load the correct events. 

It seems to me like, when ajax is called, what is put out is controlled by the polylang. the wp-query. Would it be possible for you to get an answer from polylang team to see if they modify wp-query when ajax is running?

Reply to: tickets(383030)

Hello Sally,

So with #2, what you are looking for is user RSVP be saved as draft before it can be approved or not > then send confirmations. — as Dave mentioned it is not supported at the moment. We could potentially get this built for you as I can see this could be very useful for others as well.

3. With regards to CRM. You have several options.

Webhooks:

  • The RSVP Addon supports webhooks (since EventON 4.2), which send HTTP POST requests with RSVP data (e.g., attendee details, event ID, RSVP status) to an external endpoint when an RSVP or check-in occurs.
  • Set up a webhook endpoint in Dynamics 365 (e.g., via Azure Functions or Power Automate) to receive this data and map it to contacts, leads, or custom event entities.

API Addon

  • Use the EventON Event API Addon to pull event and RSVP data in JSON format via REST API calls.
  • Leverage Dynamics 365’s Web API to push this data into Dynamics and retrieve CRM data if needed.

CSV Export Import

  • Export RSVP attendee lists as CSV files from the EventON backend.
  • Import these into Dynamics 365 manually or via a scheduled Power Automate flow.

#4 QR Code Addon  – You can use our QR Code addon to check-in customers. We are also working on a new addon called “Check-ins” Which will give you a front-end page to easily search attendees by their name and mark them in. It adds a bit of human interaction compared to QR Code checkin. eg. The person at the door asking “Can I get your last name” vs hold QR Scanner scan “Good to go”. 🙂

This addon, we are hoping to get it out by this week.

Let us know if you have any other questions.

Reply to: tickets(383324)

and eventon-action-user/includes/class-functions.php

// …
// delete button html
$delete_html = (!$this->can_currentuser_delete_event($EVENT))?
”:”<a class=’fa fa-trash deleteEvent’ data-eid='{$event_id}’></a>”;
$delete_html = apply_filters(‘evoau_event_manager_delete_btn’, $delete_html, $EVENT);
// — MODIFIED Stephan 31.03.205 — START
$DateTime = ”; // Default empty
$fresh_srow = get_post_meta($event_id, ‘evcal_srow’, true);
if (!empty($fresh_srow) && is_numeric($fresh_srow)) {
$wp_time_format = get_option(‘time_format’);
$wp_date_format = get_option(‘date_format’);
$DateTime = date_i18n($wp_date_format . ‘ ‘ . $wp_time_format, (int)$fresh_srow);
// Optional: Log if needed: error_log(“Event ID: {$event_id} – Using direct formatting for list. DateTime: {$DateTime}”);
} else {
// Fallback if fresh meta is not available (should not happen ideally)
$DateTime = $EVENT->get_formatted_smart_time();
// Optional: Log if needed: error_log(“Event ID: {$event_id} – Fallback to EventON formatting for list.”);
}
// — MODIFIED Stephan 31.03.205 — END
// if event is featured
$feature_event_tag = evo_check_yn($ePmv, ‘_featured’)? “<i class=’fa fa-star’ title='”. evo_lang(‘Featured Event’) .”‘></i>”:”;
// …