This below filter allows you to override and change details for your ICS file. You can customize it according to your preference. Add zoom link to location directly and so on.
Add below line to your functions.php file in your child theme or theme.
add_filter('vczapi_pro_change_ical_details', 'vczapi_change_ical_details', 10, 2); function vczapi_change_ical_details($ics, $zoom) { $ics['location'] = $zoom['api']->join_url; return $ics; }
Above code will change the link of your ICS and Google calendar location link to Zoom Join URL.
- How to modify what is shown in Calendar Details ? ( Part 1 of 2 )
- How to modify what is shown in Calendar Details ? ( Part 2 of 2 )
- How to add or modify Custom Fields in confirmation emails ?
- Change confirmation or cancellation email subject
- How to show Add to Calendar ICS links to logged in users only ?