EDD Support Tickets

Change Breadcrumb Link Text on Front-end Ticket Page

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.

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]