Tribe__Tickets__Main::add_help_section_featured_content( Tribe__Admin__Help_Page $help )
Append the text about Event Tickets to the Feature box 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_featured_content( $help ) {
// If The Events Calendar is active dont add
if ( $help->is_active( 'the-events-calendar', true ) ) {
return;
}
$link = '<a href="http://m.tri.be/18nd" target="_blank">' . esc_html__( 'New User Primer', 'event-tickets' ) . '</a>';
$help->add_section_content( 'feature-box', sprintf( __( 'We are committed to helping you sell tickets for your event. Check out our handy %s to get started.', 'event-tickets' ), $link ), 20 );
}