Hi Autumn,
There certainly is. This short snippet (which you could for instance add to your theme’s functions.php file) ought to do the trick:
// Wait until EDD Tickets has set its hooks up
add_action( 'init', 'remove_edd_print_tickets_link' );
function remove_edd_print_tickets_link() {
// Do not trigger a fatal should EDD Tickets be removed/temporarily deactivated
if ( ! class_exists( 'TribeEDDTickets' ) ) return;
// Unhook the "print tickets" link generator
$callback = array( TribeEDDTickets::get_instance(), 'ticket_downloads' );
remove_filter( 'edd_download_files', $callback, 10, 2 );
}
Does that work for you?