• Resolved newhopeyouth

    (@newhopeyouth)


    After installing Event Tickets, our event cost defaults to “Free”.

    I’ve read your replies to others that this is because we’re using RSVP, and events with a cost would be considered “tickets.” In our case though, we don’t want to sell tickets through the event page, we just need a head count and nothing else. Cost is paid at the door.

    To be honest, we’d be happy if the correct event price were displayed, or no event price were displayed at all. Either would work, but it obviously presents a problem if the word “Free” automatically displays in the title when the event isn’t free.

    We don’t need any other features of Event Tickets Plus. We just want RSVPs and nothing else, without “Free” displayed on the event.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Barry

    (@barryhughes-1)

    Sorry for the delay in responding, @newhopeyouth.

    Should it help you or anyone else in this situation, you can remove the ‘Free’ keyword from single event pages with some custom code along these lines:

    add_filter( 'tribe_get_cost', function( $cost ) {
    	if ( 'Free' === $cost ) {
    		$cost = '';
    	}
    
    	return $cost;
    } );

    This could be added either to a custom plugin (preferred) or else to your theme’s functions.php file.

    Hey there,

    Since this thread has been inactive for a while, I’m going to go ahead and mark it as resolved. Don’t hesitate to create a new thread any time you help again!

    Ed ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘event cost defaults to free’ is closed to new replies.