$categories = $this->getCategories();
wp_register_script(
'googlemaps-js',
- 'http://maps.googleapis.com/maps/api/js?key=' . $this->config['settings']['google_maps_api_key'],
+ '//maps.googleapis.com/maps/api/js?key=' . $this->config['settings']['google_maps_api_key'],
null,
GLM_MEMBERS_EVENTS_PLUGIN_VERSION,
true
$part = urlencode($part);
}
$addressString = implode( ',', $address);
- $url = "http://maps.googleapis.com/maps/api/geocode/json?address={$addressString}";
+ $url = "//maps.googleapis.com/maps/api/geocode/json?address={$addressString}";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$return = json_decode(curl_exec($ch));
if( ! wp_script_is( 'jquery-ui', 'enqueued' ) ){
wp_enqueue_script('jquery-ui-datepicker', false, array('jquery'), false, true);
- wp_enqueue_style('jquery-style', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css');
+ wp_enqueue_style('jquery-style', '//ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css');
// wp_enqueue_script('front-js', GLM_MEMBERS_EVENTS_PLUGIN_PATH . '/js/front.js');
}
$view = 'frontAdd';
<!-- Location -->
-<script src="http://maps.googleapis.com/maps/api/js?{if $settings.google_maps_api_key != ''}&key={$settings.google_maps_api_key}{/if}"></script>
+<script src="//maps.googleapis.com/maps/api/js?{if $settings.google_maps_api_key != ''}&key={$settings.google_maps_api_key}{/if}"></script>
<script type="text/javascript">var enableDraggable = true;</script>
<!-- Add New City Dialog Box -->