Reply to: tickets(332709)

Hello Ashan

Yes it works on the testing page but it doesn’t work on my other pages. Please see attached screenshot. The shortcode is correct but 2nd language is not shown. Below is one of the page that has translation issue on basic calendar, thanks!

https://yoteame.com/zh-hant/

Reply to: tickets(335985)

We are having this same issue, however, ours have added an additional day instead of starting a day early. It only shows this additional day on the front end, however, the back end is correct. Do you have this same issue as well?

Reply to: tickets(335979)

I’ll add another error to the list – when updating existing events for 2024 (most of my events are recurring from year to year) and I go in to select the new date, it doesn’t register that I’ve clicked a new date the first time. I have to click the calendar again, flip through 11-12 months, and select it again.

I’d also like to roll back to the previous version. Unfortunately I have made too many updates to simply restore the site from yesterday’s back up.

Reply to: tickets(335893)

Ok. So to confirm: I shouldn’t expect all event fields to be exported…only certain ones? And if the fields I want to edit aren’t exported, i’ll need to add the following two snippets of code to my functions.php file and change the _field_var_name to whatever the appropriate field name is:

add_filter(‘evocsv_additional_csv_fields’, ‘evocsv_function1’, 10, 1);
function evocsv_function1($array){

$array[‘newfield’] = ‘newfield’;
return $array;

}

add_action(‘evocsv_save_event_custom_data’,’evocsv_function2′, 10, 3);

function evocsv_function2($eventID, $postdata, $field){

if($field == ‘newfield’ && isset( $postdata[$field]) ){

update_post_meta($eventID, ‘_field_var_name’, $postdata[$field]);

}

}

 

Reply to: tickets(335764)

Thx. Just checking on how best to update with a new download. Do I deactivate my existing plugin first, then add a new plugin (the new downloaded)? OR? Just want to be sure I don’t lose my customizations. Thx