Hi Sean,
Could you please try the instructions mentioned in this documentation to make sure your issue is indeed coming from eventon.
If you confirm the issue is coming from Eventon, please send wp-admin access in private reply so that we can take a look at the issue
Hi Erik,
We are glad your issue is resolved, if you have any further questions or concerns please feel free to create a new ticket.
Yes. The test page is working and our regular page is now working again.

To be clear about this ticket — I am NOT looking to sell tickets to anything. I am merely trying to create a community calendar of events in our area. All I want to do is add the venue information, etc. Please see image below.
kindly add this CSS into myeveton settings > styles
.evo_lb_closer{z-index:99999;}
and make sure to clear cache after this. 🙂
SOrry Remy we could not help you achive what you desired.
I think there was a bit of a miscommunication. If you would like to have another go, kindly share a screenshot of what you wish to acomplish. and we can see what we can do to make it happen 🙂
Sorry to hear this Mario. And sorry we couldnt provide a better solution we are kind of swamped at the moment with a big 4.6 update we are working on.
What are the order IDs you need refuned for?
kindly make this change in your code to allow organizer to work.

Mario I am not able to edit your plugin files any more. Can you please apply this code change to your site and see if that fix the event time order?
CODE:
// SORTING u4.6
function cmp_esort_startdate($a, $b){
return $a[“unix_start”] – $b[“unix_start”];
}
function cmp_esort_enddate($a, $b){
return $a[“unix_end”] – $b[“unix_end”];
}
function cmp_esort_title($a, $b){
return strcmp($a[“event_title”], $b[“event_title”]);
}
function cmp_esort_color($a, $b){
return strcmp($a[“event_color”], $b[“event_color”]);
}

https://docs.myeventon.com/documentations/how-to-apply-a-patch-fix/
More information in here. You will need to make changes in your code as it looks in the above image.
CODE:
// description 2 field
if( $key == ‘description2’){
$term_meta[$key] = $_POST[‘term_meta’][‘description2’];
continue;
}