2020-01-10 18:07:05 +00:00
< ? php
/**
2020-01-14 20:07:12 +00:00
* Admin View : Notice - Missing MaxMind license key
2020-01-10 18:07:05 +00:00
*
* @ package WooCommerce\Admin
*/
defined ( 'ABSPATH' ) || exit ;
?>
< div id = " message " class = " updated woocommerce-message " >
< a class = " woocommerce-message-close notice-dismiss " href = " <?php echo esc_url( wp_nonce_url( add_query_arg( 'wc-hide-notice', 'maxmind_license_key' ), 'woocommerce_hide_notices_nonce', '_wc_notice_nonce' ) ); ?> " >< ? php esc_html_e ( 'Dismiss' , 'woocommerce' ); ?> </a>
< p >
2020-01-10 21:07:26 +00:00
< strong >< ? php esc_html_e ( 'Geolocation has not been configured.' , 'woocommerce' ); ?> </strong>
2020-01-10 18:07:05 +00:00
</ p >
< p >
< ? php
echo wp_kses_post (
sprintf (
/* translators: %s: integration page */
2020-01-10 21:07:26 +00:00
__ ( 'You must enter a valid license key on the <a href="%s">MaxMind integration settings page</a> in order to use the geolocation service.' , 'woocommerce' ),
2020-01-10 18:07:05 +00:00
admin_url ( 'admin.php?page=wc-settings&tab=integration§ion=maxmind_geolocation' )
)
);
?>
</ p >
</ div >