get_title();
$this->get_image();
$value      = $this->get_field_value( 'eventAttendanceMode' );
$is_online  = 'Online' === $value;
$is_offline = 'Offline' === $value;
if ( 'MixedEventAttendanceMode' === $value ) {
	$is_online  = true;
	$is_offline = true;
	$value      = esc_html__( 'Online + Offline', 'rank-math' );
}
?>
	get_description(); ?>
	get_field(
		esc_html__( 'Event Type', 'rank-math' ),
		'@type'
	);
	?>
	output_field(
		esc_html__( 'Event Attendance Mode', 'rank-math' ),
		$value
	);
	?>
	get_field(
		esc_html__( 'Event Status', 'rank-math' ),
		'eventStatus'
	);
	?>
	get_field(
			esc_html__( 'Venue Name', 'rank-math' ),
			'location.name'
		);
		$this->get_field(
			esc_html__( 'Venue URL', 'rank-math' ),
			'location.url'
		);
		$this->get_field(
			esc_html__( 'Address', 'rank-math' ),
			'location.address'
		);
	}
	?>
	get_field(
			esc_html__( 'Online Event URL', 'rank-math' ),
			'VirtualLocation.url'
		);
	}
	?>
	get_field(
		esc_html__( 'Performer', 'rank-math' ),
		'performer.@type'
	);
	?>
	get_field(
		esc_html__( 'Performer Name', 'rank-math' ),
		'performer.name'
	);
	?>
	get_field(
		esc_html__( 'Performer URL', 'rank-math' ),
		'performer.sameAs'
	);
	?>
	get_field(
		esc_html__( 'Start Date', 'rank-math' ),
		'startDate',
		true
	);
	?>
	get_field(
		esc_html__( 'End Date', 'rank-math' ),
		'endDate',
		true
	);
	?>
	get_field(
		esc_html__( 'Ticket URL', 'rank-math' ),
		'offers.url'
	);
	?>
	get_field(
		esc_html__( 'Entry Price', 'rank-math' ),
		'offers.price'
	);
	?>
	get_field(
		esc_html__( 'Currency', 'rank-math' ),
		'offers.priceCurrency'
	);
	?>
	get_field(
		esc_html__( 'Availability', 'rank-math' ),
		'offers.availability'
	);
	?>
	get_field(
		esc_html__( 'Availability Starts', 'rank-math' ),
		'startDate'
	);
	?>
	get_field(
		esc_html__( 'Stock Inventory', 'rank-math' ),
		'offers.inventoryLevel'
	);
	?>
	show_ratings(); ?>