Tribe__Admin__Help_Page::get_ticketing_faqs()
Defines ticketing frequently asked questions and displays them in the UI.
Return
(array) of FAQs which are displayed on the ticketing tab of the in-app help page.
Source
File: src/Tribe/Admin/Help_Page.php
public function get_ticketing_faqs() {
$faqs = apply_filters( 'tec_help_ticketing_faqs', [
[
'question' => __( 'How Do I create events with Tickets or RSVP’s?', 'tribe-common' ),
'answer' => __( 'We’ve put together a video tutorial showing how to create events with Tickets using our plugins. Click on the link in the link in the title to learn more.', 'tribe-common' ),
'link' => 'https://evnt.is/1art',
],
[
'question' => __( 'How Do I Set Up E-Commerce Plugins for Selling Tickets?', 'tribe-common' ),
'answer' => __( 'You can sell tickets using our built-in e-commerce option, or upgrade to Event Tickets Plus to use ecommerce plugins such as WooCommerce.', 'tribe-common' ),
'link' => 'https://evnt.is/1arq',
],
[
'question' => __( 'Can I have a seating chart associated with my tickets?', 'tribe-common' ),
'answer' => __( 'Yes! You can easily accomplish this task using the stock options and multiple ticket types available with Event Tickets.', 'tribe-common' ),
'link' => 'https://evnt.is/1arr',
],
[
'question' => __( 'How do I process refunds for tickets?', 'tribe-common' ),
'answer' => __( 'When it comes to paid tickets, these orders can be refunded through the e-commerce platform in use.', 'tribe-common' ),
'link' => 'https://evnt.is/1ars',
],
] );
return $faqs;
}
Changelog
| Version | Description |
|---|---|
| 4.14.2 | Introduced. |