Skip to content

Instantly share code, notes, and snippets.

@rafsuntaskin
Created October 19, 2023 07:58
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 rafsuntaskin/a6bd42cb0ac4a5e702884a39d0f3192d to your computer and use it in GitHub Desktop.
Save rafsuntaskin/a6bd42cb0ac4a5e702884a39d0f3192d to your computer and use it in GitHub Desktop.
Disable Ticket Emails JSON LD schema output
<?php
add_filter( 'tec_tickets_emails_template_args', function( $args ) {
if ( isset( $args['json_ld'] ) ) {
unset( $args['json_ld'] );
}
return $args;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment