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.