Remove Additional Tickets Email and Message

Home Forums Ticket Products Event Tickets Plus Remove Additional Tickets Email and Message

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1014787
    Carl
    Participant

    Hello,

    I would like to remove the additional tickets email and message as my site doesn’t sell tickets. Is the following code still applicable?

    add_filter( 'wootickets_email_message', 'replace_wootickets_order_msg' );
      
    function replace_wootickets_order_msg() {
        return '';
    }
    
    

    add_action( ‘init’, ‘stop_wootickets_ticket_email’ );

    function stop_wootickets_ticket_email() {
    $callback = array( Tribe__Events__Tickets__Woo__Main::get_instance(), ‘add_email_class_to_woocommerce’ );
    remove_filter( ‘woocommerce_email_classes’, $callback );
    }`

    Thank you

    #1014834
    Josh
    Participant

    Hey Carl,

    Thanks for reaching out to us! Check out George’s response here  and see if this accomplishes what you’re looking for.

    Thanks!

    #1020210
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Remove Additional Tickets Email and Message’ is closed to new replies.