• Resolved twig

    (@stripytiger)


    Hi – Looking in the FAQ about the countdown not showing, I am also getting the Cannot read property ‘guess’ of undefined at Object.countDownTimerMoment

    The Zoom meetings are created. If I disable Forminator plugin, the countdown does show, so as requested, letting you know.

    Both your Zoom plugin and Forminator are up to date, and running WP 5.5

    Any suggestions on how to deal with this.

    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter twig

    (@stripytiger)

    I have fixed by doing the following.
    Forminator Moment is being loaded in the footer. This catches it, and de-queues it on single-meeting pages.

    function CheckMoment()
    {
    global $template;
    $Tpl = basename($template) ;

    global $wp_scripts;
    foreach( $wp_scripts->queue as $handle )
    {
    if ($handle == “forminator-custom-form-moment” && $Tpl == “single-meeting.php”)
    {
    wp_dequeue_script($handle);
    }
    }

    add_action(‘wp_footer’, ‘CheckMoment’);

    Plugin Author Deepen

    (@j_3rk)

    @stripytiger

    Thanks for sharing. I’ll add this in the FAQ section. !

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Conflict with Forminator’ is closed to new replies.