Forum Replies Created
-
AuthorPosts
-
Oliver
Participant@Cliff
Thank you for the temp. fix for german language => works!BTW: I noticed some other (bug?) in the singe event view when hovering the “show all” link. There is a popup showing all recurring events BUT, there is something missing (dates) – the the HTML-output:
<div class=”tribe-events-event-body”>Eine Veranstaltung am
Eine Veranstaltung am
Eine Veranstaltung am
Eine Veranstaltung am
Eine Veranstaltung am
Eine Veranstaltung am
Eine Veranstaltung am
Eine Veranstaltung am
Eine Veranstaltung am
Eine Veranstaltung am
Eine Veranstaltung am
Eine Veranstaltung am
Eine Veranstaltung am
</div>
@Dan
Just edit the fix to fit in frensh – it’s easily done:function translate_all_slug_to_tous( $text, $original, $context, $textdomain ) {
if (
$textdomain !== ‘the-events-calendar’
|| $context !== ‘all events slug’
|| $original !== ‘all’
) {
return $text;
}return ‘tous’;
}add_filter( ‘gettext_with_context’, ‘translate_all_slug_to_tous’, 10, 4 );
Oliver
ParticipantHi George and team,
thank you for the Maintenance Release, which in our case, did not fix the URL problem of recurring events => show all:
/event/event-title/alle/ (german – show all: does not work)
/event/event-title/all/ (english – show all: does work)If you need some more information or testing etc. => let me know as we need to have that issue somehow fixed (404 errors are not nice).
Regards
OliverOliver
ParticipantHi there,
I can confirm the same problem – is a slug language issue of the pro version:
/alle/ (german) is not working = 404
/all/ worksHope to have that fixed very soon.
Regards
Oliver -
AuthorPosts
