Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter ald9506

    (@ald9506)

    Yep, same two errors when disabling AsyncJS:

    TypeError: Cannot read property ‘ChildViewContainer’ of undefined
    ReferenceError: Marionette is not defined

    Thread Starter ald9506

    (@ald9506)

    Ok, I’ve excluded JQuery now I’m getting two new errors:

    TypeError: Cannot read property ‘ChildViewContainer’ of undefined
    ReferenceError: Marionette is not defined

    Any other ideas? I’m also using the Async JS plugin and have excluded the NinjaForms plugin and JQuery within their settings.

    Thread Starter ald9506

    (@ald9506)

    I’ve checked everywhere i have no other AMP plugins that misght have caused this. Any other ideas. All Custom CSS in AMP>Settings>design>Global has been checked as well as appearance>CSS.

    What else can i try?

    Thread Starter ald9506

    (@ald9506)

    bump… I’ve included a screenshot. You can clearly see the highlighted !important tag that needs removing however, I cant figure out where to remove it. I cleared all !important tags from my CSS in the AMP settings panel. Is there another stylesheet somewhere that’s overriding? Caching issue?

    Screenshot

    Thread Starter ald9506

    (@ald9506)

    Google. I still the error for:

    https://herniameshlawsuit.org/wp-content/themes/panoramic/library/fonts/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0

    Not sure how to adress it. It still asks me to set an expiry date or a maximum age in the HTTP headers for static resources. It references the URL above

    Thread Starter ald9506

    (@ald9506)

    Trying to understand why i still have the error.

    I have the following settings globally activated in W3TC >browser cache

    expires header
    cache control header
    entity tag (ETag)
    W3 Total Cache header
    Enable HTTP (gzip) compression

    What could i be doing wrong?

    Thread Starter ald9506

    (@ald9506)

    My current Nginix.conf looks like this:

    # BEGIN W3TC Page Cache cache
    location ~ /wp-content/cache/page_enhanced.*html$ {
    }
    location ~ /wp-content/cache/page_enhanced.*gzip$ {
        gzip off;
        types {}
        default_type text/html;
        add_header Content-Encoding gzip;
    }
    # END W3TC Page Cache cache
    # BEGIN W3TC Browser Cache
    gzip on;
    gzip_types text/css text/x-component application/x-javascript application/javascript text/javascript text/x-js text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/bmp application/java application/msword application/vnd.ms-fontobject application/x-msdownload image/x-icon image/webp application/json application/vnd.ms-access application/vnd.ms-project application/x-font-otf application/vnd.ms-opentype application/vnd.oasis.opendocument.database application/vnd.oasis.opendocument.chart application/vnd.oasis.opendocument.formula application/vnd.oasis.opendocument.graphics application/vnd.oasis.opendocument.spreadsheet application/vnd.oasis.opendocument.text audio/ogg application/pdf application/vnd.ms-powerpoint application/x-shockwave-flash image/tiff application/x-font-ttf audio/wav application/vnd.ms-write application/font-woff application/font-woff2 application/vnd.ms-excel;
    # END W3TC Browser Cache
    # BEGIN W3TC Page Cache core
    set $w3tc_rewrite 1;
    if ($request_method = POST) {
        set $w3tc_rewrite 0;
    }
    if ($query_string != "") {
        set $w3tc_rewrite 0;
    }
    if ($request_uri !~ \/$) {
        set $w3tc_rewrite 0;
    }
    if ($http_cookie ~* "(comment_author|wp\-postpass|w3tc_logged_out|wordpress_logged_in|wptouch_switch_toggle)") {
        set $w3tc_rewrite 0;
    }
    set $w3tc_preview "";
    if ($http_cookie ~* "(w3tc_preview)") {
        set $w3tc_preview _preview;
    }
    set $w3tc_enc "";
    if ($http_accept_encoding ~ gzip) {
        set $w3tc_enc _gzip;
    }
    if (!-f "$document_root/wp-content/cache/page_enhanced/$http_host/$request_uri/_index$w3tc_preview.html$w3tc_enc") {
      set $w3tc_rewrite 0;
    }
    if ($w3tc_rewrite = 1) {
        rewrite .* "/wp-content/cache/page_enhanced/$http_host/$request_uri/_index$w3tc_preview.html$w3tc_enc" last;
    }
    # END W3TC Page Cache core
    

    Bump for this.. any solution?

    My site: https://herniameshlawsuit.org/

    • This reply was modified 7 years, 8 months ago by ald9506.
Viewing 8 replies - 1 through 8 (of 8 total)