• murlocx0

    (@murlocx0)


    Hey! What is happening with the plugin? Previously, we had 4 arguments are required, 3 given error, that we fixed with this code block:



    add_filter( 'gettext', function( $translation, $text, $domain ) {


    if ( $domain === 'the-events-calendar' && $text === '%1$s, %2$s' ) {
    return '%1$s, %2$s';
    }

    return $translation;
    }, 10, 3 );


    add_filter( 'ngettext', function( $translation, $single, $plural, $number, $domain ) {

    if ( $domain === 'the-events-calendar'
    && $single === '%1$s %2$s'
    && $plural === '%1$s %2$s'
    ) {

    return '%1$s %2$s';
    }

    return $translation;
    }, 10, 5 );

    Now that you released a fix for it, we have a new problem.

    The screen is simply stuck at mobile view, however, if i resize my window to go to mobile view, and then come back to web view, layout fixes. But once i refresh the page, i see mobile layout in desktop screen size again. What have you done now?

    What have i tried:

    Freshly re-installing plugin, turning off recently installed plugins, changing theme, trying to expand this section with css.

    Website in question – https://www.davinesferma.lt/renginiai/menesis

    update: I have added test event, and now day and list of events shows correct desktop layout, however, if try to enter month list, it still gives mobile layout

    • This topic was modified 1 day ago by murlocx0.
    • This topic was modified 1 day ago by murlocx0.
    • This topic was modified 23 hours, 53 minutes ago by murlocx0.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter murlocx0

    (@murlocx0)

    php version – 8.0.30

    The Events calendar – 6.15.12.1

    Theme – Astra

    Plugin Support Darian

    (@d0153)

    Hi @murlocx0

    Could you please try adding the following CSS under Appearance > Customize > Additional CSS and let me know if it improves the layout?

    .post-type-archive-tribe_events .tec-events-main-content { 
    width: 100%;
    }
    Thread Starter murlocx0

    (@murlocx0)

    Wow that worked, thanks. I have tried something similair but didin’t work at first. Are you planing on releasing a fix? As i might need to delete this css later on if you do so

    Thread Starter murlocx0

    (@murlocx0)

    Just one more thing, when you hover over an event, it goes to full screen https://imgur.com/a/GQgg7hf

Viewing 4 replies - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.