Reply to: tickets(161541)

LE: Ok it was somehow obvious that this plugin won’t work with Enable one-click adding seats direct to cart option.

It works now as it should. Sorry for posting here.

Reply to: tickets(158790)

The NextGen Gallery plug in has not been changed since February last year.

The problem to insert Gallery Photo’s does only occur at our History 2020 page.

On other pages it still works fine.

So please ask Ashan to also look into this.

 

Reply to: tickets(161357)

Hi,
I found a great article from you how to hook into the eventtop:
The hook works and the custom code shows up.
I just can’t find the right string to return the remaining tickets.
Can you please help? I highlighted it in bold.
// hook into event top correct place
add_filter(‘eventon_eventtop_one’, ‘eventon_insert’, 10, 3);
function eventon_insert($array, $evvals, $passval){
$array[‘custom’] = array(‘eventid’=>$passval[‘eventid’], ‘evvals’=>$evvals);
return $array;
}
// include in index as part of event top array
add_filter(‘evo_eventtop_adds’, ‘eventon_top_adds’, 10, 1);
function eventon_top_adds($array){
$array[] = ‘custom’;
return $array;
}
// throw html content for the switch statement for this index
add_filter(‘eventon_eventtop_custom’, ‘eventon_top_content’, 10, 3);
function eventon_top_content($object, $helpers, $EVENT){
$event_id = $object->eventid;
// $event_id = $EVENT->ID — event ID can also be get from this
// $event_pmv = $object->evvals; // event post meta values
// your HTML code goes in here.
$output = ‘<span data-eventid=”‘.$event_id.‘” class=”custom_code”>Click to see more</span>’;
return $output;
}

Reply to: tickets(160875)

Thanks! Am about to update. I see best / only method is by FTP yes? No automatic update available?

Reply to: tickets(158989)

Ok the site is currently running and I can access it again. Support had to disable the EventOn – Event List Ext plugin as that was what was causing the fatal errors to the back end. I can see the events are still there but this plugin is currently disabled. You can access it again Im not sure what you need to do/see but I can get siteground support to make changes if there is something on the hosting part

Reply to: tickets(158989)

The support group are deactivating the plugin, I am hoping that after they do that you are able to do something to resolve without losing all the calendar entries that have been inserted

Reply to: tickets(159606)

also within the email reminder template , would i be able to use the Supported Dynamic Tags for Email Message{event-name} {event-link}Using these tags within the email message for reminders email will be replaced with dynamic content.

Or these tags will only work with myevenon > tickets > reminders

Thanks