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'; }
Questions and Comments are Welcome