Tribe__Admin__Help_Page::get_community_extensions()
Defines community extensions and displays them in the UI.
Return
(array) of extensions which are displayed on the community tab of the in-app help page.
Source
File: src/Tribe/Admin/Help_Page.php
public function get_community_extensions() {
$extensions = apply_filters( 'tec_help_ticketing_extensions', [
[
'title' => __( 'Add Cost Currency Symbol', 'tribe-common' ),
'description' => __( 'This extension allows you to set default currency symbols for your users to choose from instead of having a plain text field.', 'tribe-common' ),
'link' => 'https://evnt.is/1arn',
'product-slug' => 'community-events',
],
[
'title' => __( 'Add Google Maps Display and Link Options', 'tribe-common' ),
'description' => __( 'This extension adds the “Show Google Maps” and “Show Google Maps Link” checkboxes when creating a new Venue.', 'tribe-common' ),
'link' => 'https://evnt.is/1arm',
'product-slug' => 'community-events',
],
[
'title' => __( 'Hide Others’ Organizers and Venues', 'tribe-common' ),
'description' => __( 'This extension allows you to hide the Organizers and Venues that a visitor has not created from the Community Events submission form.', 'tribe-common' ),
'link' => 'https://evnt.is/1aro',
'product-slug' => 'community-events',
],
[
'title' => __( 'Display Custom HTML', 'tribe-common' ),
'description' => __( 'This extension allows you to add custom HTML content to the top of the Community Events submission form.', 'tribe-common' ),
'link' => 'https://evnt.is/1arp',
'product-slug' => 'community-events',
],
] );
return $extensions;
}
Changelog
| Version | Description |
|---|---|
| 4.14.2 | Introduced. |