RSVP funtion

Home Forums Ticket Products Event Tickets Plus RSVP funtion

  • This topic has 0 replies, 3 voices, and was last updated 8 years ago by Joe Orth.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1484802
    Joe Orth
    Participant

    Is there a way to eliminate the “FREE” caption when just using the RSVP function. We are trying to get people to RSVP to an event that is not free, that they must get tickets for through a link in the description.

    Thanks!

    #1484892
    Nancy Hernandez
    Participant

    I had the same issue, you have to fix it for two areas: the landing page and the card view. For the landing page; open the backend Event page scroll down to “Eventica – Event Details” module and next to Call to Action Text, write RSVP (it will replace Free).

    For the Card view; I suggest you copy your functions.php under /wp-content/themes/eventica-wp-child/ and
    add this line at the bottom

    /** remove Free from single event site **/
    add_filter( ‘tribe_get_cost’, function( $cost ) { if ( ‘Free’ === $cost ) { $cost = ”; } return $cost; } );

    Hope this helps, as support takes long to answer.

    #1484897
    Joe Orth
    Participant

    Thanks. Unfortunately that is gibberish to me as I am not much of a
    wordpress guy. I do not see event details on the event itself and not sure
    what a card view is. Any guidance would be great. Thanks!

    Roll With The Wind!

    [image: Roll With The Wind!]

    Joe Orth / Executive Vice President
    [email protected] / 757.362.7083

    Ainsley’s Angels of America
    http://www.AinsleysAngels.org

    [image: Twitter] [image: Facebook]
    [image:
    LinkedIn] [image:
    Instagram] [image: Youtube]
    [image: Vimeo]

    #1486662
    Brendan
    Keymaster

    Hi Joe,

    Thanks for emailing support. Nancy is correct. Unfortunately, out of the box its not an option. We do provide little snippets as noted by Nancy to help people customize where they can so you our a developer would need to add the following code to your functions.php file in your theme.

    /** remove Free from single event site **/
    add_filter( ‘tribe_get_cost’, function( $cost ) { if ( ‘Free’ === $cost ) { $cost = ”; } return $cost; } );
    

    Thanks,
    Brendan

    #1506829
    Support Droid
    Keymaster

    Hey there! This thread has been pretty quiet for the last three weeks, so we’re going to go ahead and close it to avoid confusion with other topics. If you’re still looking for help with this, please do open a new thread, reference this one and we’d be more than happy to continue the conversation over there.

    Thanks so much!
    The Events Calendar Support Team

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘RSVP funtion’ is closed to new replies.