When viewing a ticket on the front end, there is a breadcrumb which links back to the “My Tickets” page (the list of all tickets for a customer). You can change the text on this breadcrumb link with the following filter. Replace ‘New text’ on line 7 with your own text.
/**
* Replace the text on the breadcrumb link on ticket page.
*/
function my_eddstix_crumb_text( $text ) {
return 'New text';
}
add_filter('eddstix_crumb_text', 'my_eddstix_crumb_text');
To remove the breadcrumb altogether, see: Remove the Breadcrumb.
Questions and Comments are Welcome