Arne

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Translations not fully working #1180439
    Arne
    Participant

    Hi Geoff

    I was able to find the 4.2.7 version on the WordPress plugin page and I can confirm it works with full translations and Q translate X. I also tried 4.3, but then the translation break again. It might be something small to get it to work again, but I am happy it works again with 4.2.7 and I will see if and when 4.3 or 4.4(?) becomes compatible again.

    One additional question, is it possible to disable the “update available” message for now? I get 3 plugin updates available (Events Calendar, Events Calendar Pro and Filter bar) and looks a bit sloppy for other users.

    Thanks!

    in reply to: Translations not fully working #1180422
    Arne
    Participant

    Hi Geoff

    Thanks for your reply. I understand you don’t support qtranslate X, but it has worked flawlessly with version 4.2.X for a very long time. I do have ‘the-events-calendar’ as filter in q translate to enable compatibility.

    I wanted to download an old version through my account but even when I select 4.2.6 or 4.2.7 I get the 4.3 zip, probably a small error.

    As test case I reverted back to an old backup, which uses 4.2.3 and it works fully translated again! If you could make 4.2.6/7 available again I would love to try that one out and leave version 4.3 as is for now.

    I suspect something has changed since the 4.3 release in the way languages (filters) are handled.

    Thanks!

    in reply to: Translations not fully working #1179689
    Arne
    Participant

    Something worth mentioning that I forgot is that through the functions.php I changed “event” and “events” to “workshop” and “workshops”

    I found this somewhere here in the support documents or forums.

    /** Rename Event and Events to Workshop and Workshops **/
    // Singular
    add_filter( 'tribe_event_label_singular', 'event_display_name' );
    function event_display_name() {
    	return 'Workshop';
    }
    add_filter( 'tribe_event_label_singular_lowercase', 'event_display_name_lowercase' );
    function event_display_name_lowercase() {
    	return 'workshop';
    }
    // Plural
    add_filter( 'tribe_event_label_plural', 'event_display_name_plural' );
    function event_display_name_plural() {
    	return 'Workshops';
    }
    add_filter( 'tribe_event_label_plural_lowercase', 'event_display_name_plural_lowercase' );
    function event_display_name_plural_lowercase() {
    	return 'workshops';
    }
Viewing 3 posts - 1 through 3 (of 3 total)