Reply to: Problem with ICS importer when using repeated events in Google Calendar

No, the event Bön is not repeated. I made a new repeated test-event in Google Calendar called “Test with 2 weeks repetition”, which starts 2 march at 17:00.  If you look att the page https://kcvast.org/testcal/ and click on Mars, you can see:
– 2 Mar, time 18:00-
– 9 Mar, time 18:00-
Both shows +1 hour wrong.

Reply to: my event calendar is not showing on first load of the page, I have to reload to make it work…

Hello,

Could you please update EventON to 2.6.16? Before update please backup your data.

If update didn’t help please follow the instructions in this documentation to activate debug in your site to see any PHP errors recorded that can provide insight on to whats going on. Please reply with a link to debug.log file. If you are not able to do this please send us FTP access to your site so we can do this for you.

Reply to: Can you show me an example for how to add a second (and then more) additional fields at checkout. I have added one successfully but….

Hello,

Please try:

add_filter('evotx_checkout_additional_fields_settings','evotx_2',10,1);
function evotx_2($fields){
	$fields['business'] = __('Business Name','evotx');
        $fields['business1'] = __('Business Name 1','evotx');
	// you can add other fields like this similarly
	return $fields;
}
function evotx_1($fields){
// additonal field code block
$fields['business'] = array(
'type'=>'text',
'label'=> evo_lang('Business Name'),
'required'=> false,
);
$fields['business1'] = array(
'type'=>'text',
'label'=> evo_lang('Business Name 1'),
'required'=> false,
);
// you can use same code block for more fields
return $fields;
}
add_filter('evotx_get_attendees_for_event', 'evotx_3',10, 3);
function evotx_3($arr, $event_id, $_th){
if(!isset($_th['business'])) return $arr;
$arr['oD']['business'] = $_th['business'];
if(!isset($_th['business1'])) return $arr;
$arr['oD']['business1'] = $_th['business1'];
// the above 2 lines can be used for all other new fields
return $arr;
}

Reply to: events show up in .ics, but not on the website

Hello,

DOWNLOAD ALL EVENTS AS ICS FILE button downloads all events from your website, not just from February.

The problem is that for some reason you can’t move to the next month (March). I checked the source code of the page and can see that your theme didn’t load any scripts.

Could you please try the instructions mentioned in this documentation?

Reply to: prob with the Text editor and autoptimize

Hello,

The problem is that there is nothing we can do about it. We just output the text and load scripts, because that’s what WordPress allows us to do. Cache plugin should automatically recognize what to cache and what to leave dynamic.

Unfortunately, we can’t recommend any particular cache plugin.