Tribe__Admin__Help_Page::get_ticketing_extensions()

Defines ticketing extensions and displays them in the UI.


Return

(array) of extensions which are displayed on the ticketing tab of the in-app help page.


Top ↑

Source

File: src/Tribe/Admin/Help_Page.php

	public function get_ticketing_extensions() {
		$extensions = apply_filters( 'tec_help_ticketing_extensions', [
			[
				'title'        => __( 'Ticket Email Settings', 'tribe-common' ),
				'description'  => __( 'Adds a new settings panel in Events > Settings that gives more control over the ticket and rsvp emails that are sent to attendees after registration.', 'tribe-common' ),
				'link'         => 'https://evnt.is/1arx',
				'product-slug' => 'event-tickets',
			],
			[
				'title'        => __( 'Per Event Check In API', 'tribe-common' ),
				'description'  => __( 'This extension shows a meta box with an API key on each Event with Ticket/RSVP.', 'tribe-common' ),
				'link'         => 'https://evnt.is/1arw',
				'product-slug' => 'event-tickets',
			],
			[
				'title'        => __( 'Add Event & Attendee Info to WooCommerce Order Details', 'tribe-common' ),
				'description'  => __( 'Displays the information collected by “attendee meta fields” in the WooCommerce order screens as well.', 'tribe-common' ),
				'link'         => 'https://evnt.is/1arv',
				'product-slug' => 'event-tickets',
			],
			[
				'title'        => __( 'Organizer Notification Email', 'tribe-common' ),
				'description'  => __( 'This extension will send an email to event organizers whenever a user registers for their event.', 'tribe-common' ),
				'link'         => 'https://evnt.is/1aru',
				'product-slug' => 'event-tickets',
			],
		] );

		return $extensions;
	}

Top ↑

Changelog

Changelog
Version Description
4.14.2 Introduced.