Hey Joakim,
Thank you for reaching out to us!
To completely remove the Geolocation notice, please add the following snippet in a custom plugin or in your theme’s functions.php file:
add_action( 'admin_notices', 'ph_remove_geoloc_notice', 1 );
function ph_remove_geoloc_notice() {
if ( ! class_exists( 'Tribe__Events__Pro__Geo_Loc' ) ) {
return false;
}
$geoloc = Tribe__Events__Pro__Geo_Loc::instance();
remove_action( 'admin_notices', array(
$geoloc,
'show_offer_to_fix_notice'
) );
}
I hope this helps! If you have any other questions at all please feel free to let me know and I’d be happy to help as best I can!
Cheers,
Patricia