File Editor
Directories:
.. (Back)
actions
ari
details
form
messages
Files:
actions.php
ari.php
content.php
details.php
Create New File
Create
Edit File: content.php
<?php /** * Block: RSVP * Content * * Override this template in your own theme by creating a file at: * [your-theme]/tribe/tickets/v2/rsvp/content.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. * * @since 4.12.3 * * @version 4.12.3 */ ?> <?php $this->template( 'v2/rsvp/messages/must-login' ); ?> <?php if ( 'ari' === $step ) : ?> <?php $this->template( 'v2/rsvp/ari', [ 'rsvp' => $rsvp ] ); ?> <?php elseif ( 'going' === $step || 'not-going' === $step ) : ?> <?php $this->template( 'v2/rsvp/form/form', [ 'rsvp' => $rsvp, 'going' => $step ] ); ?> <?php else : ?> <?php $this->template( 'v2/rsvp/messages/success' ); ?> <div class="tribe-tickets__rsvp tribe-common-g-row tribe-common-g-row--gutters"> <?php $this->template( 'v2/rsvp/details', [ 'rsvp' => $rsvp ] ); ?> <?php $this->template( 'v2/rsvp/actions', [ 'rsvp' => $rsvp ] ); ?> </div> <?php endif; ?>
Save Changes
Rename File
Rename