Tribe__Admin__Help_Page::get_calendar_faqs()

Defines TEC frequently asked questions and displays them in the UI.


Return

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


Top ↑

Source

File: src/Tribe/Admin/Help_Page.php

	public function get_calendar_faqs() {
		$faqs = apply_filters( 'tec_help_calendar_faqs', [
			[
				'question' => __( 'Can I have more than one calendar?', 'tribe-common' ),
				'answer'   => __( 'No, but you can use event categories or tags to display certain events like having...', 'tribe-common' ),
				'link'     => 'https://evnt.is/1arh',
			],
			[
				'question' => __( 'What do I get with Events Calendar Pro?', 'tribe-common' ),
				'answer'   => __( 'Events Calendar Pro runs alongside The Events Calendar and enhances...' ),
				'link'     => 'https://evnt.is/1arj',
			],
			[
				'question' => __( 'How do I sell tickets to events?', 'tribe-common' ),
				'answer'   => __( 'Use our free Event Tickets plugin to get started with tickets and RSVPs.', 'tribe-common' ),
				'link'     => 'https://evnt.is/1ark',
			],
			[
				'question' => __( 'Where can I find a list of available shortcodes?', 'tribe-common' ),
				'answer'   => __( 'Our plugins include many shortcodes that do everything from embedding the calendar...', 'tribe-common' ),
				'link'     => 'https://evnt.is/1arl',
			],
		] );

		return $faqs;
	}

Top ↑

Changelog

Changelog
Version Description
4.14.2 Introduced.