Kathrine Fraser

Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • in reply to: Replacing words – over-ride for single event #1243611
    Kathrine Fraser
    Participant

    Hi – I am trying a different approach to this, and would now like to try hiding the Cost line (both the dt label, and the actual value) for this single event post.

    This hides the cost, but not the label “Cost” to the left of it.

    #post-1341 .tribe-events-event-cost {
       display: none !important;
    }

    Are you able to assist in helping me to identify this element to hide?

    Thanks

    in reply to: Moving attendee to new ticket type #1192927
    Kathrine Fraser
    Participant

    Thanks for this – I was already stopping the ticket emails with:

    function wootickets_email_no_no() {
        return 'no';
    }
    
    add_filter( 'wootickets-tickets-email-enabled', 'wootickets_email_no_no' );
    
    /* WooCommerce Tickets - Hide You'll receive your tickets in another email. */
    add_filter('wootickets_email_message', 'woo_tickets_filter_completed_order', 10 );
    function woo_tickets_filter_completed_order($text) {
    	$text = "";
     	return $text;
    }

    So have deleted this and replaced it with

    /*
    * 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' ) );
        }
    }

    Unfortunately, the “Important changes to your tickets” is still sending… if you are able to let me know if I am doing something wrong it would be appreciated.

    in reply to: Change RSVP text language #1192021
    Kathrine Fraser
    Participant

    Thank you

    in reply to: Add to Cart gives 500 error #1168970
    Kathrine Fraser
    Participant

    Thanks Geoff,
    Not sure what the cause was, but this does appears to have resolved itself.
    Thanks for your time
    ~Kathrine

    in reply to: Add to Cart gives 500 error #1168837
    Kathrine Fraser
    Participant

    This appears to only be happening with Chrome. I just tested with Firefox and IE and they are going to Cart fine…

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