Forum Replies Created
-
AuthorPosts
-
Kathrine Fraser
ParticipantHi – 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
Kathrine Fraser
ParticipantThanks 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.
Kathrine Fraser
ParticipantThank you
Kathrine Fraser
ParticipantThanks Geoff,
Not sure what the cause was, but this does appears to have resolved itself.
Thanks for your time
~KathrineKathrine Fraser
ParticipantThis appears to only be happening with Chrome. I just tested with Firefox and IE and they are going to Cart fine…
-
AuthorPosts
