25 lines
849 B
PHP
25 lines
849 B
PHP
<?php
|
|
/**
|
|
* Calendar Event Details (Group - Shared)
|
|
* *
|
|
* This template can be overridden by copying it to wp-content/themes/your-theme/ssa/calendar-events/group-shared.php
|
|
* Note: this is just the default template that is used as a starting pont.
|
|
* Once the user makes edits in the SSA Settings interface,
|
|
* the template stored in the database will be used instead
|
|
*
|
|
* @see https://simplyscheduleappointments.com
|
|
* @author Simply Schedule Appointments
|
|
* @package SSA/Templates
|
|
* @version 4.3.7.4
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
} ?>
|
|
{% if Appointment.web_meeting_url %}
|
|
<?php _e( "This event has a web meeting:", 'simply-schedule-appointments' ) ?>
|
|
{{Appointment.web_meeting_url}}
|
|
{% endif %}
|
|
|
|
<?php _e( "Attendees:", 'simply-schedule-appointments' ) ?>
|
|
{{ attendees_list }}
|