ald9506
Forum Replies Created
-
Forum: Plugins
In reply to: [Autoptimize] Ninja Forms jQuery Not DefinedYep, same two errors when disabling AsyncJS:
TypeError: Cannot read property ‘ChildViewContainer’ of undefined
ReferenceError: Marionette is not definedForum: Plugins
In reply to: [Autoptimize] Ninja Forms jQuery Not DefinedOk, I’ve excluded JQuery now I’m getting two new errors:
TypeError: Cannot read property ‘ChildViewContainer’ of undefined
ReferenceError: Marionette is not definedAny other ideas? I’m also using the Async JS plugin and have excluded the NinjaForms plugin and JQuery within their settings.
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Invalid CSS Styelesheet errorI’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?
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Invalid CSS Styelesheet errorbump… 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?
Forum: Plugins
In reply to: [W3 Total Cache] How to leverage browser caching for .woff filesGoogle. I still the error for:
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
Forum: Plugins
In reply to: [W3 Total Cache] How to leverage browser caching for .woff filesTrying 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) compressionWhat could i be doing wrong?
Forum: Plugins
In reply to: [W3 Total Cache] How to leverage browser caching for .woff filesMy 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.