Hey @Media325,
Thank you for reaching out. Just to set expectations early up front, we cannot help with any customization-related questions, which I only mention because you mention trying to make custom archive pages. We’re also unable to troubleshoot issues that may arise from a third-party piece of software, which WP-Toolset is of course…you can read more on this stuff here.
☝️ While that information is true, I would love to help point out some general things here that might help. For example, you should be able to use the filter tribe_events_register_venue_type_args.
While you will have tinker with the custom coding on your own, here’s a quick example of ensuring it is set to “public”, not hidden:
add_filter( 'tribe_events_register_venue_type_args', 'media325_make_venues_public' );
function media325_make_venues_public( $args ) {
$args['show_in_nav_menus'] = true;
$args['public'] = true;
return $args;
}
Try adding code like this to your theme’s functions.php file or a custom plugin, and let us know if it helps!
— George