Hello Paul,
Ah, these data is actually coming from the exif data. You can remove this by editing the file /administrator/components/com_easysocial/tables/photo.php
// Detect location for the photo
if( $exif->isAvailable() && $image->hasExifSupport() )
{
$exif->load( $file[ 'tmp_name' ] );
// Get the location
$locationCoordinates = $exif->getLocation();
// Once we have the coordinates, we need to reverse geocode it to get the address.
if( $locationCoordinates )
{
$my = Foundry::user();
$geocode = Foundry::get( 'GeoCode' );
$address = $geocode->reverse( $locationCoordinates->latitude , $locationCoordinates->longitude );
$location = Foundry::table( 'Location' );
$location->loadByType( $this->id , SOCIAL_TYPE_PHOTO , $my->id );
$location->address = $address;
$location->latitude = $locationCoordinates->latitude;
$location->longitude = $locationCoordinates->longitude;
$location->user_id = $my->id;
$location->type = SOCIAL_TYPE_PHOTO;
$location->uid = $this->id;
$state = $location->store();
}
// Store custom meta data for the photo
$model->storeCustomMeta( $this , $exif );
}
However, I really don't see this as a problem because eventually if I am able to download the image to my local computer, I could just view the info on Photoshop or any other exif reader.