Skip to content

Instantly share code, notes, and snippets.

@jesseeproductions
Created January 6, 2016 16:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jesseeproductions/77671af6eb939d474f53 to your computer and use it in GitHub Desktop.
Save jesseeproductions/77671af6eb939d474f53 to your computer and use it in GitHub Desktop.
Event Tickets - Change Ticket Email Subject
/**
* Event Tickets - Change Ticket Email Subject
*/
add_filter( 'tribe_rsvp_email_subject', 'tribe_change_rsvp_subject' );
function tribe_change_rsvp_subject( $subject ) {
$subject = sprintf( __( 'New Your tickets from %s', 'event-tickets' ), get_bloginfo( 'name' ) );
return $subject;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment