[Plugin: Events Manager] Problem with translation of months in the frontend
-
The translation of months in the frontend for %startdate% and %enddate% didn’t work for me, while the translation of the backend admin page of wp-event works well. So the wordpress configuration should be correct.
I solved it with a modification of wp-events-functions.php:
e.g. line 192$tj_date = array(); $tj_date_temp = explode(" ", gmstrftime($events_config['dateformat_sidebar'], $event->thetime)); // the format has to be e.g. "%d. %B", "%d.%B" doesn't work in this solution! foreach ($tj_date_temp as $tj_date_temp_value) $tj_date[] = __($tj_date_temp_value, 'wpevents'); $tj_date_new = implode(" ", $tj_date); $template = str_replace('%startdate%', $tj_date_new, $template);
Is there any better solution?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘[Plugin: Events Manager] Problem with translation of months in the frontend’ is closed to new replies.