Is it possible to create an archive page for venues?
I have attempted to filter:
add_filter( ‘tribe_events_register_venue_type_args’, array($this, ‘my_modification_of_post_type_args’), 10, 1 );
public function my_modification_of_post_type_args( $args ) {
This is going to be more complex than we will be able to help you out with unfortunately. My suggestion would be to create some sort of custom page template or page where you run a custom venue query and output whatever you need to display there. Have a look through our documentation and/or the forum here for some ideas/examples of running custom queries.