I use the default fields that come with the plugin.
I just want to translate the default labels in Greek
e.g
add_filter(‘cf7_google_map_address_label’, ‘change_address_label’,10,2);
function change_address_label($label, $field_name){
if(‘your-location’==$field_name){
$label = ‘Διε?θυνση’;
}
return $label;
}