Hi Paolo and thank you for your answers.
Polylang offers the option to sync data between posts and pages (such as featured image). But fails with geodirectory. Never mind, I can add manually the records.
Regarding your second message about the breadcrumbs, unfortunately it didn’t work.
Fortunately, I found the solution. In general_functions.php:
Line 607:
$location_term_actual_region = $location_info->region;
should change to:
$location_term_actual_region = __( $location_info->region, GEODIRECTORY_TEXTDOMAIN );
Line 609 (the same):
$location_term_actual_city = $location_info->city;
should change to:
$location_term_actual_city = __( $location_info->city, GEODIRECTORY_TEXTDOMAIN );
I think you should include these changes to the next update, because it is important (for SEO purposes) to have the breadcrumbs localized.
Thanks again.