Tribe__Events__Pro__Geo_Loc::show_offer_to_fix_notice()
If there are venues without geo data, offer the user to fix them.
Source
File: src/Tribe/Geo_Loc.php
public function show_offer_to_fix_notice() {
$settings = Tribe__Settings::instance();
$url = apply_filters( 'tribe_settings_url',
add_query_arg(
array(
'post_type' => Tribe__Events__Main::POSTTYPE,
'page' => $settings->adminSlug,
),
admin_url( 'edit.php' )
)
);
?>
<div class="updated">
<p><?php echo sprintf( __( "You have venues for which we don't have Geolocation information. <a href='%s'>Click here to generate it</a>.", 'tribe-events-calendar-pro' ), esc_url( $url ) . '#geoloc_fix' ); ?></p>
</div>
<?php
}