Remove "FREE" from event when RSVP ony

Home Forums Ticket Products Event Tickets Plus Remove "FREE" from event when RSVP ony

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1289069
    Anne
    Participant

    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.

    #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.

    #1289232
    Anne
    Participant

    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> 🙂

    #1289233
    Anne
    Participant

    Thanks a bunch! My client will be very happy.

    #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.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Remove "FREE" from event when RSVP ony’ is closed to new replies.