EDD Support Tickets

Custom Text on WP Admin Toolbar “Tickets” Link

Support Agents will see a “Tickets” link in the Admin Toolbar. You can edit the text on this link with the following filter. Change “Ticket link” on line 6 to your own custom text.

/**
 * Edit the text for the "Tickets" link which appears on the WP Admin Toolbar
 */
add_filter('eddstix_toolbar_link', 'my_toolbar_link_eddstix');// @test now
function my_toolbar_link_eddstix( $text ) {
	return 'Ticket link';
}

Updated on December 6, 2017

Questions and Comments are Welcome

Your email address will not be published. All comments will be moderated.

Please wrap code in "code" bracket tags like this:

[code]

YOUR CODE HERE 

[/code]