SHOW:
|
|
- or go back to the newest paste.
| 1 | add_filter('tribe_events_event_schedule_details', 'customize_tribe_schedule_format');
| |
| 2 | ||
| 3 | function customize_tribe_schedule_format($text) {
| |
| 4 | - | $text = str_replace(' - ', '—', $text);
|
| 4 | + | return str_replace('@', 'at', $text);
|
| 5 | - | $text = str_replace('@', 'von', $text);
|
| 5 | + |