Tribe__Tickets__Main::add_help_section_support_content( Tribe__Admin__Help_Page $help )
Append the text about Event Tickets to the support section on the Help page
Contents
Parameters
- $help
-
(Tribe__Admin__Help_Page) (Required) The Help Page Instance
Return
(void)
Source
File: src/Tribe/Main.php
public function add_help_section_support_content( $help ) {
$help->add_section_content( 'support', '<strong>' . esc_html__( 'Support for Event Tickets', 'event-tickets' ) . '</strong>', 20 );
$help->add_section_content( 'support', array(
'<strong><a href="http://m.tri.be/18ne" target="_blank">' . esc_html__( 'Settings overview', 'event-tickets' ) . '</a></strong>',
'<strong><a href="http://m.tri.be/18nf" target="_blank">' . esc_html__( 'Features overview', 'event-tickets' ) . '</a></strong>',
'<strong><a href="http://m.tri.be/18jb" target="_blank">' . esc_html__( 'Troubleshooting common problems', 'event-tickets' ) . '</a></strong>',
'<strong><a href="http://m.tri.be/18ng" target="_blank">' . esc_html__( 'Customizing Event Tickets', 'event-tickets' ) . '</a></strong>',
), 20 );
}