Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1489649

    I’ve added the following to quick CSS:
    .header_color .av-hamburger-inner, .header_color .av-hamburger-inner::after, .header_color .av-hamburger-inner::before {
    background-color: #22467f !important;
    }
    Recently updated the PHP version and had many issues with images. Had to re upload most of them to get them to appear. However, the hamburger menu is stubborn.

    #1489669

    Hey Jody,

    Thank you for the inquiry.

    The issue occurs because of the following defer filter in the functions.php file — we disabled it temporarily.

    /**
     * Defer parsing of javascript.
     */
    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 );
    }
    

    Best regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.