Hey William,
Thanks for reaching out!
That forum exchange touched on other issues, but in regards to the custom price ranges in Filter Bar, the gist of the conversation is that there is unfortunately no way to modify those price ranges without performing extensive code modifications to the Filter Bar plugin.
We cannot help with such modifications, unfortunately, but we do have a list of great developers here if you’re interested in hiring someone to help you modify that code → http://m.tri.be/18k1 (and we have no affiliation with any of these folks–they’re simply some well-respected names in the community that we’ve compiled).
If you yourself are comfortable diving into the code, then while I cannot help with writing the complete necessary code, I’m to help point you in the right direction for getting started here. Which would be to look for this filter within the Filter Bar plugin files:
tribe_events_filter_values
☝️ You can write a filter callback that modifies the output of the values with that filter. To get started, you’d do something like this in your theme’s functions.php file:
add_filter( 'tribe_events_filter_values', 'tribe_modify_the_price_range_filters', 10, 2 );
function tribe_modify_the_price_range_filters( $values, $slug ) {
print_r( $values );
var_dump( $slug )
return $values;
}
You’ll have to take the reins from there and tinker around, but I hope this information helps!
Cheers,
George