• Resolved Jerry Tonneman

    (@jerry74)


    I use the plugin Simple Calendar – Google Agenda plugin together with the free version of Hueman.

    The good news is that the Google Calendar of the tennisclub is being displayed.
    Unfortunately there are some features not working:

    – event hover with details
    – next & previous month navigation

    I checked if the issue exsists with the other plugins disabled. Therefore I put a copy of the site on a “test” sub-domain. The problem is still there.

    Now comes the point; when I use the Twenty Seventeen WordPress template, the calendar displays good. So there’s some sort of javascript conflict between Hueman and Simple Calendar.

    Test website with “Twenty Seventeen” enabled, calendar shows correctly:
    Test Website

    Main website with Hueman Template:
    http://balletuin.nl/jaarkalender/

    Demo Simple Calendar – Grid view

    I encountered a problem with a mobile menu plugin, and the developer informed me that there are some conclicts with the website and calendar plugin:
    Screenshot

    It’s a matter of, where lies the problem? Is it the template, of is it the plugin. In this case the plugin works on a default WordPress template, so therefore I wonder what the cause is with the Hueman template.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter Jerry Tonneman

    (@jerry74)

    I found out that for some reason the was some function inside the functions.php file:

    // Defer Javascripts
    // Defer jQuery Parsing using the HTML5 defer property
    if (!(is_admin() )) {
        function defer_parsing_of_js ( $url ) {
            if ( FALSE === strpos( $url, '.js' ) ) return $url;
            if ( strpos( $url, 'jquery.js' ) ) return $url;
            // return "$url' defer ";
            return "$url' defer onload='";
        }
        add_filter( 'clean_url', 'defer_parsing_of_js', 11, 1 );
    }

    Which caused the JS files from the Calendar plugin not to load. The default WordPress template doesn’t have this code in it’s functions.php. So that clearifies the matter.

Viewing 1 replies (of 1 total)
  • The topic ‘Simple Calendar – Hueman conflict’ is closed to new replies.