Remove "FREE" from event when RSVP ony Post date Home › Forums › Ticket Products › Event Tickets Plus › Remove "FREE" from event when RSVP ony This topic has 5 replies, 2 voices, and was last updated 9 years ago by Anne. Viewing 5 posts - 1 through 5 (of 5 total) Author Posts May 25, 2017 at 1:18 pm #1289069 AnneParticipant Client does not want the word Free on the event even though it is only RSVP. I assigned it a category “rsvp” and then added the following to style.css file: .single-tribe_events .tribe_events_cat-rsvp .tribe-events-schedule .tribe-events-divider, .single-tribe_events .tribe_events_cat-rsvp .tribe-events-schedule .tribe-events-cost { display: none; } Still shows FREE. Assistance will be greatly appreciated. Thanks. May 25, 2017 at 8:16 pm #1289227 Geoff B.Member Good evening Anne and welcome back! Thank you for reaching out to us. I would love to help you with this topic. You could apply the following snippet in the functions.php file of your theme (without the PHP tag at the top): https://gist.github.com/GeoffEW/b440feef873af841d023c0bf0839e93f Let me know how that goes. Best regards, Geoff B. May 25, 2017 at 8:24 pm #1289232 AnneParticipant add_filter ( ‘tribe_get_cost’, ‘tribe_not_show_free’, 10, 3 ); function tribe_not_show_free ( $cost, $post_id, $with_currency_symbol ) { if ( $cost == 0 || $cost == ‘Free’ ) { $cost = ”; } return $cost; } in theme’s functions.php file Works Great!! Thanks for the quick reply> 🙂 May 25, 2017 at 8:27 pm #1289233 AnneParticipant Thanks a bunch! My client will be very happy. May 26, 2017 at 9:53 am #1289546 Geoff B.Member Good afternoon Anne, I am super stoked that this worked. You are welcome back in our support forums any time 🙂 For now, I am going to close this thread. Have a great weekend! Geoff B. Author Posts Viewing 5 posts - 1 through 5 (of 5 total) The topic ‘Remove "FREE" from event when RSVP ony’ is closed to new replies. → Please verify your API key is correctly entered on the settings