Here is the code..
* price followed by text noting higher priced tickets.
*/
function eventbrite_venue_get_event_ticket_price_string( $tickets ) {
foreach ( $tickets as $ticket ) {
if ( true == $ticket->free ) {
$prices[0] = ‘Free’;
} else {
$prices[$ticket->cost->value] = $ticket->cost->display;
}
}
// Events created with the API might have no price assigned
if ( empty( $prices ) ) {
return _x( ‘Price unknown’, ‘ticket price’, ‘eventbrite-venue’ );
}