Nancy Hernandez

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Limit RSVP per email address #1581335
    Nancy Hernandez
    Participant

    I appreciate your reply, thanks.

    in reply to: RSVP funtion #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.

    Nancy Hernandez
    Participant

    I’d like to use your code snippet in response to item #1 that will hide the remaining amount only until there are a small number remaining. But where do you add that snippet? or do we need to create a new page?

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