WC_AJAX::get_customer_location()public staticWC 1.0

Locate user via AJAX.

Method of the class: WC_AJAX{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = WC_AJAX::get_customer_location();

WC_AJAX::get_customer_location() code WC 8.6.1

public static function get_customer_location() {
	$location_hash = WC_Cache_Helper::geolocation_ajax_get_location_hash();
	wp_send_json_success( array( 'hash' => $location_hash ) );
}