{"id":1295614,"date":"2017-06-08T22:22:44","date_gmt":"2017-06-09T05:22:44","guid":{"rendered":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/add-a-custom-form-field-to-rsvp-and-ticket-form\/"},"modified":"2017-06-08T22:22:44","modified_gmt":"2017-06-09T05:22:44","slug":"add-a-custom-form-field-to-rsvp-and-ticket-form","status":"closed","type":"topic","link":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/add-a-custom-form-field-to-rsvp-and-ticket-form\/","title":{"rendered":"Add a custom form field to RSVP and Ticket Form"},"content":{"rendered":"<p>In this screen shot you can see that I would like to a phone number field in this customized RSVP section. <\/p>\n<p>https:\/\/www.dropbox.com\/s\/i6zyc1mbvc1ky02\/Screenshot%202017-06-09%2001.16.08.png?dl=0<\/p>\n<p>Here is the file i&#8217;m working with:<br \/>\n<code><br \/>\n&lt;?php<br \/>\n\/**<br \/>\n * This template renders the RSVP ticket form<br \/>\n *<br \/>\n * Override this template in your own theme by creating a file at:<br \/>\n *<br \/>\n *     [your-theme]\/tribe-events\/tickets\/rsvp.php<br \/>\n *<br \/>\n * @version 4.4.9<br \/>\n *<br \/>\n * @var bool $must_login<br \/>\n *\/<\/p>\n<p>$is_there_any_product         = false;<br \/>\n$is_there_any_product_to_sell = false;<br \/>\n$are_products_available       = false;<\/p>\n<p>ob_start();<br \/>\n$messages = Tribe__Tickets__RSVP::get_instance()-&gt;get_messages();<br \/>\n$messages_class = $messages ? 'tribe-rsvp-message-display' : '';<br \/>\n$now = current_time( 'timestamp' );<br \/>\n?&gt;<br \/>\n&lt;form action=\"\" class=\"tribe-tickets-rsvp cart &lt;?php echo esc_attr( $messages_class ); ?&gt;\" method=\"post\" enctype='multipart\/form-data'&gt;<\/p>\n<h2>&lt;?php echo esc_html_x( 'Register here to pay at door (Cash or Check only). Or register below to pay online.', 'form heading', 'event-tickets' ) ?&gt;<\/h2>\n<p>\t&lt;div class=\"tribe-rsvp-messages\"&gt;<br \/>\n\t\t&lt;?php<br \/>\n\t\tif ( $messages ) {<br \/>\n\t\t\tforeach ( $messages as $message ) {<br \/>\n\t\t\t\t?&gt;<br \/>\n\t\t\t\t&lt;div class=\"tribe-rsvp-message tribe-rsvp-message-&lt;?php echo esc_attr( $message-&gt;type ); ?&gt;\"&gt;<br \/>\n\t\t\t\t\t&lt;?php echo esc_html( $message-&gt;message ); ?&gt;<br \/>\n\t\t\t\t&lt;\/div&gt;<br \/>\n\t\t\t\t&lt;?php<br \/>\n\t\t\t}\/\/end foreach<br \/>\n\t\t}\/\/end if<br \/>\n\t\t?&gt;<br \/>\n\t\t&lt;div class=\"tribe-rsvp-message tribe-rsvp-message-error tribe-rsvp-message-confirmation-error\" style=\"display:none;\"&gt;<br \/>\n\t\t\t&lt;?php esc_html_e( 'Please fill in the registration fields.', 'event-tickets' ); ?&gt;<br \/>\n\t\t&lt;\/div&gt;<br \/>\n\t&lt;\/div&gt;<br \/>\n\t&lt;table width=\"100%\" class=\"tribe-events-tickets tribe-events-tickets-rsvp\"&gt;<br \/>\n\t\t&lt;?php<br \/>\n\t\tforeach ( $tickets as $ticket ) {<br \/>\n\t\t\t\/\/ if the ticket isn't an RSVP ticket, then let's skip it<br \/>\n\t\t\tif ( 'Tribe__Tickets__RSVP' !== $ticket-&gt;provider_class ) {<br \/>\n\t\t\t\tcontinue;<br \/>\n\t\t\t}<\/p>\n<p>\t\t\tif ( ! $ticket-&gt;date_in_range( $now ) ) {<br \/>\n\t\t\t\tcontinue;<br \/>\n\t\t\t}<\/p>\n<p>\t\t\t$is_there_any_product = true;<br \/>\n\t\t\t$is_there_any_product_to_sell = $ticket-&gt;is_in_stock();<\/p>\n<p>\t\t\tif ( $is_there_any_product_to_sell ) {<br \/>\n\t\t\t\t$are_products_available = true;<br \/>\n\t\t\t}<br \/>\n\t\t?&gt;<br \/>\n\t\t&lt;tr class=\"tribe-rsvp-ticket-row-&lt;?php echo absint( $ticket-&gt;ID ); ?&gt;\"&gt;<br \/>\n\t\t\t&lt;td class=\"tribe-ticket quantity\" data-product-id=\"&lt;?php echo esc_attr( $ticket-&gt;ID ); ?&gt;\"&gt;<br \/>\n\t\t\t\t&lt;input type=\"hidden\" name=\"product_id[]\" value=\"&lt;?php echo absint( $ticket-&gt;ID ); ?&gt;\"&gt;<br \/>\n\t\t\t\t&lt;?php if ( $is_there_any_product_to_sell ): ?&gt;<br \/>\n\t\t\t\t\t&lt;input type=\"number\" class=\"tribe-ticket-quantity\" min=\"0\" max=\"&lt;?php echo esc_attr( $ticket-&gt;remaining() ); ?&gt;\" name=\"quantity_&lt;?php echo absint( $ticket-&gt;ID ); ?&gt;\" value=\"0\" &lt;?php disabled( $must_login ); ?&gt; &gt;<\/p>\n<p>\t\t\t\t\t&lt;?php if ( $ticket-&gt;managing_stock() ): ?&gt;<br \/>\n\t\t\t\t\t&lt;span class=\"tribe-tickets-remaining\"&gt;<br \/>\n\t\t\t\t\t\t&lt;?php echo sprintf( esc_html__( '%1$s out of %2$s available', 'event-tickets' ), $ticket-&gt;remaining(), $ticket-&gt;original_stock() ); ?&gt;<br \/>\n\t\t\t\t\t&lt;\/span&gt;<br \/>\n\t\t\t\t\t&lt;?php endif; ?&gt;<br \/>\n\t\t\t\t&lt;?php else: ?&gt;<br \/>\n\t\t\t\t\t&lt;span class=\"tickets_nostock\"&gt;&lt;?php esc_html_e( 'Out of stock!', 'event-tickets' ); ?&gt;&lt;\/span&gt;<br \/>\n\t\t\t\t&lt;?php endif; ?&gt;<br \/>\n\t\t\t&lt;\/td&gt;<br \/>\n\t\t\t&lt;td class=\"tickets_name\"&gt;<br \/>\n\t\t\t\t&lt;?php echo esc_html( $ticket-&gt;name ); ?&gt;<br \/>\n\t\t\t&lt;\/td&gt;<br \/>\n\t\t\t&lt;td class=\"tickets_description\" colspan=\"2\"&gt;<br \/>\n\t\t\t\t&lt;?php echo esc_html( $ticket-&gt;description ); ?&gt;<br \/>\n\t\t\t&lt;\/td&gt;<br \/>\n\t\t&lt;\/tr&gt;<\/p>\n<p>\t\t&lt;?php<br \/>\n\t\t\t\/**<br \/>\n\t\t\t * Allows injection of HTML after an RSVP ticket table row<br \/>\n\t\t\t *<br \/>\n\t\t\t * @var Event ID<br \/>\n\t\t\t * @var Tribe__Tickets__Ticket_Object<br \/>\n\t\t\t *\/<br \/>\n\t\t\tdo_action( 'event_tickets_rsvp_after_ticket_row', tribe_events_get_ticket_event( $ticket-&gt;id ), $ticket );<\/p>\n<p>\t\t}<br \/>\n\t\t?&gt;<\/p>\n<p>\t\t&lt;?php if ( $are_products_available ) : ?&gt;<br \/>\n\t\t\t&lt;tr class=\"tribe-tickets-meta-row\"&gt;<br \/>\n\t\t\t\t&lt;td colspan=\"4\" class=\"tribe-tickets-attendees\"&gt;<br \/>\n\t\t\t\t\t&lt;header&gt;&lt;?php esc_html_e( 'Contact Info:', 'event-tickets' ); ?&gt;&lt;\/header&gt;<br \/>\n\t\t\t\t\t&lt;?php<br \/>\n\t\t\t\t\t\/**<br \/>\n\t\t\t\t\t * Allows injection of HTML before RSVP ticket confirmation fields<br \/>\n\t\t\t\t\t *<br \/>\n\t\t\t\t\t * @var array of Tribe__Tickets__Ticket_Object<br \/>\n\t\t\t\t\t *\/<br \/>\n\t\t\t\t\tdo_action( 'event_tickets_rsvp_before_confirmation_fields', $tickets );<br \/>\n\t\t\t\t\t?&gt;<br \/>\n\t\t\t\t\t&lt;table class=\"tribe-tickets-table\"&gt;<br \/>\n\t\t\t\t\t\t&lt;tr class=\"tribe-tickets-full-name-row\"&gt;<br \/>\n\t\t\t\t\t\t\t&lt;td&gt;<br \/>\n\t\t\t\t\t\t\t\t&lt;label for=\"tribe-tickets-full-name\"&gt;&lt;?php esc_html_e( 'Full Name', 'event-tickets' ); ?&gt;:&lt;\/label&gt;<br \/>\n\t\t\t\t\t\t\t&lt;\/td&gt;<br \/>\n\t\t\t\t\t\t\t&lt;td colspan=\"3\"&gt;<br \/>\n\t\t\t\t\t\t\t\t&lt;input type=\"text\" name=\"attendee[full_name]\" id=\"tribe-tickets-full-name\"&gt;<br \/>\n\t\t\t\t\t\t\t&lt;\/td&gt;<br \/>\n\t\t\t\t\t\t&lt;\/tr&gt;<br \/>\n\t\t\t\t\t\t&lt;tr class=\"tribe-tickets-email-row\"&gt;<br \/>\n\t\t\t\t\t\t\t&lt;td&gt;<br \/>\n\t\t\t\t\t\t\t\t&lt;label for=\"tribe-tickets-email\"&gt;&lt;?php esc_html_e( 'Email', 'event-tickets' ); ?&gt;:&lt;\/label&gt;<br \/>\n\t\t\t\t\t\t\t&lt;\/td&gt;<br \/>\n\t\t\t\t\t\t\t&lt;td colspan=\"3\"&gt;<br \/>\n\t\t\t\t\t\t\t\t&lt;input type=\"email\" name=\"attendee[email]\" id=\"tribe-tickets-email\"&gt;<br \/>\n\t\t\t\t\t\t\t&lt;\/td&gt;<br \/>\n\t\t\t\t\t\t&lt;\/tr&gt;<\/p>\n<p>\t\t\t\t\t\t&lt;tr class=\"tribe-tickets-order_status-row\"&gt;<br \/>\n\t\t\t\t\t\t\t&lt;td&gt;<br \/>\n\t\t\t\t\t\t\t\t&lt;label for=\"tribe-tickets-order_status\"&gt;&lt;?php echo esc_html_x( 'RSVP', 'order status label', 'event-tickets' ); ?&gt;:&lt;\/label&gt;<br \/>\n\t\t\t\t\t\t\t&lt;\/td&gt;<br \/>\n\t\t\t\t\t\t\t&lt;td colspan=\"3\"&gt;<br \/>\n\t\t\t\t\t\t\t\t&lt;?php Tribe__Tickets__Tickets_View::instance()-&gt;render_rsvp_selector( 'attendee[order_status]', '' ); ?&gt;<br \/>\n\t\t\t\t\t\t\t&lt;\/td&gt;<br \/>\n\t\t\t\t\t\t&lt;\/tr&gt;<br \/>\n\t\t\t\t\t\t&lt;?php if ( class_exists( 'Tribe__Tickets_Plus__Attendees_List' ) &amp;&amp; ! Tribe__Tickets_Plus__Attendees_List::is_hidden_on( get_the_ID() ) ) : ?&gt;<br \/>\n\t\t\t\t\t\t\t&lt;tr class=\"tribe-tickets-attendees-list-optout\"&gt;<br \/>\n\t\t\t\t\t\t\t\t&lt;td colspan=\"4\"&gt;<br \/>\n\t\t\t\t\t\t\t\t\t&lt;input type=\"checkbox\" name=\"attendee[optout]\" id=\"tribe-tickets-attendees-list-optout\"&gt;<br \/>\n\t\t\t\t\t\t\t\t\t&lt;label for=\"tribe-tickets-attendees-list-optout\"&gt;&lt;?php esc_html_e( 'Don\\'t list me on the public attendee list', 'event-tickets' ); ?&gt;&lt;\/label&gt;<br \/>\n\t\t\t\t\t\t\t\t&lt;\/td&gt;<br \/>\n\t\t\t\t\t\t\t&lt;\/tr&gt;<br \/>\n\t\t\t\t\t\t&lt;?php endif; ?&gt;<br \/>\n\t\t\t\t\t&lt;\/table&gt;<br \/>\n\t\t\t\t&lt;\/td&gt;<br \/>\n\t\t\t&lt;\/tr&gt;<br \/>\n\t\t\t&lt;tr&gt;<br \/>\n\t\t\t\t&lt;td colspan=\"4\" class=\"add-to-cart\"&gt;<br \/>\n\t\t\t\t\t&lt;?php if ( $must_login ): ?&gt;<br \/>\n\t\t\t\t\t\t<a>\"&gt;&lt;?php esc_html_e( 'Login to Register', 'event-tickets' );?&gt;<\/a><br \/>\n\t\t\t\t\t&lt;?php else: ?&gt;<br \/>\n\t\t\t\t\t\t&lt;button type=\"submit\" name=\"tickets_process\" value=\"1\" class=\"button alt\"&gt;&lt;?php esc_html_e( 'Register &amp; Pay at Door', 'event-tickets' );?&gt;&lt;\/button&gt;<br \/>\n\t\t\t\t\t&lt;?php endif; ?&gt;<br \/>\n\t\t\t\t&lt;\/td&gt;<br \/>\n\t\t\t&lt;\/tr&gt;<br \/>\n\t\t&lt;?php endif; ?&gt;<\/p>\n<p>\t\t&lt;noscript&gt;<br \/>\n\t\t\t&lt;tr&gt;<br \/>\n\t\t\t\t&lt;td class=\"tribe-link-tickets-message\"&gt;<br \/>\n\t\t\t\t\t&lt;div class=\"no-javascript-msg\"&gt;&lt;?php esc_html_e( 'You must have JavaScript activated to purchase tickets. Please enable JavaScript in your browser.', 'event-tickets' ); ?&gt;&lt;\/div&gt;<br \/>\n\t\t\t\t&lt;\/td&gt;<br \/>\n\t\t\t&lt;\/tr&gt;<br \/>\n\t\t&lt;\/noscript&gt;<br \/>\n\t&lt;\/table&gt;<br \/>\n&lt;\/form&gt;<\/p>\n<p>&lt;?php<br \/>\n$content = ob_get_clean();<br \/>\nif ( $is_there_any_product ) {<br \/>\n\techo $content;<\/p>\n<p>\t\/\/ If we have rendered tickets there is generally no need to display a 'tickets unavailable' message<br \/>\n\t\/\/ for this post<br \/>\n\t$this-&gt;do_not_show_tickets_unavailable_message();<br \/>\n} else {<br \/>\n\t\/\/ Indicate that we did not render any tickets, so a 'tickets unavailable' message may be<br \/>\n\t\/\/ appropriate (depending on whether other ticket providers are active and have a similar<br \/>\n\t\/\/ result)<br \/>\n\t$this-&gt;maybe_show_tickets_unavailable_message( $tickets );<br \/>\n}<br \/>\n<\/code><\/p>\n","protected":false},"template":"","class_list":["post-1295614","topic","type-topic","status-closed","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Add a custom form field to RSVP and Ticket Form -<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/add-a-custom-form-field-to-rsvp-and-ticket-form\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Add a custom form field to RSVP and Ticket Form -\" \/>\n<meta property=\"og:description\" content=\"In this screen shot you can see that I would like to a phone number field in this customized RSVP section. https:\/\/www.dropbox.com\/s\/i6zyc1mbvc1ky02\/Screenshot%202017-06-09%2001.16.08.png?dl=0 Here is the file i&#8217;m working with: &lt;?php \/** * This template renders the RSVP ticket form * * Override this template in your own theme by creating a file at: * * [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/add-a-custom-form-field-to-rsvp-and-ticket-form\/\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/add-a-custom-form-field-to-rsvp-and-ticket-form\/\",\"url\":\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/add-a-custom-form-field-to-rsvp-and-ticket-form\/\",\"name\":\"Add a custom form field to RSVP and Ticket Form -\",\"isPartOf\":{\"@id\":\"https:\/\/theeventscalendar.com\/support\/#website\"},\"datePublished\":\"2017-06-09T05:22:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/add-a-custom-form-field-to-rsvp-and-ticket-form\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/add-a-custom-form-field-to-rsvp-and-ticket-form\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/add-a-custom-form-field-to-rsvp-and-ticket-form\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/theeventscalendar.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Topics\",\"item\":\"https:\/\/theeventscalendar.com\/support\/topics\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Calendar Products\",\"item\":\"https:\/\/theeventscalendar.com\/support\/forums\/forum\/events\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Events Calendar PRO\",\"item\":\"https:\/\/theeventscalendar.com\/support\/forums\/forum\/events\/events-calendar-pro\/\"},{\"@type\":\"ListItem\",\"position\":5,\"name\":\"Add a custom form field to RSVP and Ticket Form\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/theeventscalendar.com\/support\/#website\",\"url\":\"https:\/\/theeventscalendar.com\/support\/\",\"name\":\"\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/theeventscalendar.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Add a custom form field to RSVP and Ticket Form -","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/add-a-custom-form-field-to-rsvp-and-ticket-form\/","og_locale":"en_US","og_type":"article","og_title":"Add a custom form field to RSVP and Ticket Form -","og_description":"In this screen shot you can see that I would like to a phone number field in this customized RSVP section. https:\/\/www.dropbox.com\/s\/i6zyc1mbvc1ky02\/Screenshot%202017-06-09%2001.16.08.png?dl=0 Here is the file i&#8217;m working with: &lt;?php \/** * This template renders the RSVP ticket form * * Override this template in your own theme by creating a file at: * * [&hellip;]","og_url":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/add-a-custom-form-field-to-rsvp-and-ticket-form\/","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/add-a-custom-form-field-to-rsvp-and-ticket-form\/","url":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/add-a-custom-form-field-to-rsvp-and-ticket-form\/","name":"Add a custom form field to RSVP and Ticket Form -","isPartOf":{"@id":"https:\/\/theeventscalendar.com\/support\/#website"},"datePublished":"2017-06-09T05:22:44+00:00","breadcrumb":{"@id":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/add-a-custom-form-field-to-rsvp-and-ticket-form\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/theeventscalendar.com\/support\/forums\/topic\/add-a-custom-form-field-to-rsvp-and-ticket-form\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/add-a-custom-form-field-to-rsvp-and-ticket-form\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/theeventscalendar.com\/support\/"},{"@type":"ListItem","position":2,"name":"Topics","item":"https:\/\/theeventscalendar.com\/support\/topics\/"},{"@type":"ListItem","position":3,"name":"Calendar Products","item":"https:\/\/theeventscalendar.com\/support\/forums\/forum\/events\/"},{"@type":"ListItem","position":4,"name":"Events Calendar PRO","item":"https:\/\/theeventscalendar.com\/support\/forums\/forum\/events\/events-calendar-pro\/"},{"@type":"ListItem","position":5,"name":"Add a custom form field to RSVP and Ticket Form"}]},{"@type":"WebSite","@id":"https:\/\/theeventscalendar.com\/support\/#website","url":"https:\/\/theeventscalendar.com\/support\/","name":"","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/theeventscalendar.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/topic\/1295614","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/topic"}],"about":[{"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/types\/topic"}],"version-history":[{"count":0,"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/topic\/1295614\/revisions"}],"wp:attachment":[{"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/media?parent=1295614"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}