- Status
- Resolved
- Related plugin/theme
- The Events Calendar PRO
Overview of the issue
When translating texts stored by The Events Calendar plugin in the wp_options table (Admin Texts), the original language versions are displayed on the front-end.

Workaround
The translation can be fixed by adding the following code to your theme’s functions.php file:
add_filter('tribe_get_single_option', 'tribe_options_multilingual', 20, 3);
function tribe_options_multilingual( $option, $default, $option_name ) {
if (is_string($option)) {
return apply_filters( 'wpml_translate_single_string', $option, 'admin_texts_tribe_events_calendar_options', '[tribe_events_calendar_options]' . $option_name);
} else {
return $option;
}
}