F. Schmitz

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: Ticket add to cart missing #1215761
    F. Schmitz
    Participant

    I managed to do the revision and have updated all plugins to the latest versions (released today). Still no change! Please advice on how to get the add to cart ticket form back on my event pages.

    Thanks in advance

    in reply to: Disable ticket email #1163866
    F. Schmitz
    Participant

    I also tried:

    /*
    * Events Tickets Plus – WooCommerce Tickets – Prevent Ticket Email from being sent.
    * @ Version 4.0
    */
    add_action( ‘init’, ‘wootickets_stop_sending_email’ );
    function wootickets_stop_sending_email() {
    if ( class_exists( ‘Tribe__Tickets_Plus__Commerce__WooCommerce__Main’ ) ) {
    $woo = Tribe__Tickets_Plus__Commerce__WooCommerce__Main::get_instance();
    remove_filter( ‘woocommerce_email_classes’, array( $woo, ‘add_email_class_to_woocommerce’ ) );
    add_action( ‘woocommerce_email_after_order_table’, array( $woo, ‘add_tickets_msg_to_email’ ) );
    }
    }

    But no success with that snippet either 🙁

Viewing 2 posts - 1 through 2 (of 2 total)