Wordpress optin plugin with geolocation

phirex

Power Member
Joined
Nov 17, 2009
Messages
517
Reaction score
262
Hi, been searching and couldn't find any, maybe someone knows...
I'm looking for a wordpress plugin that will automatically add the country of the user based on their location...
hope someone knows :)

thanks
 
Here is a starting point:

Code:
<?php
$location_data_json= file_get_contents('http://freegeoip.net/json/'.$_SERVER['REMOTE_ADDR']);
$location_data_array = json_decode($location_data_json);
// output user's country name
echo $location_data_array->country_name; 
?>
 
Hi, Phirex

I'm not getting your point, are looking for chat plugin for WordPress ?
 
nice json :)
hope somebody tested it
 
Back
Top