Current File : /home/digitaw/www/wp-content/plugins/event-tickets/src/views/v2/rsvp/attendees/attendee/rsvp.php
<?php
/**
 * Block: RSVP
 * Attendees - Attendee RSVP Name
 *
 * Override this template in your own theme by creating a file at:
 * [your-theme]/tribe/tickets/v2/rsvp/attendees/attendee/rsvp.php
 *
 * See more documentation about our Blocks Editor templating system.
 *
 * @link https://evnt.is/1amp Help article for RSVP & Ticket template files.
 *
 * @var Tribe__Tickets__Ticket_Object $rsvp The rsvp ticket object.
 * @var string|null $step The step the views are on.
 * @var array $attendees List of attendees for the given order.
 * @var int $attendee_id The attendee ID.
 *
 * @since 5.7.1
 *
 * @version 5.7.1
 */

if ( empty( $attendees ) || empty( $rsvp ) ) {
	return;
}

?>
<div class="tec-tickets__attendees-list-item-attendee-details-rsvp">
	<?php echo wp_kses_post( $rsvp->name ); ?>
</div>