Thanks for the hint! I was able to change the text because Loco Translate did not work in this case.
But there is a problem when using this on a community where members enter their private location. To remain their privacy I added the code below so only country + city is being displayed in their profile. But when updating their location the whole address is being shown in the activity stream. There definitely should be an option to hide the address und don´t link to Google Maps. I changed this in the code but a solution that remains after updating the plugin would be perfectly!
Best regards,
Jan
function gmw_modify_displayed_member_address( $address, $info, $gmw ) {
$address = ”;
if ( ! empty( $info->city ) ) {
$address .= $info->city.’ ‘;
}
if ( ! empty( $info->country ) ) {
$address .= $info->country. ‘ ‘;
}
return stripslashes( $address );
}
add_filter( “gmw_location_address”, ‘gmw_modify_displayed_member_address’, 10, 3 );