Tweak Price Display (Adjusts the Prices) | Display Eventbrite Events
add_filter( ‘wfea_price_display’, function ( $price_display, $min, $max, $currency ) { $event_id= get_post()->ID; if ( $event_id == 1234 ) { $min = $min – 10; $max = $max – 10; } if ( $min == $max ) { $price_display = $min;…Continue reading