Flux
Forum Replies Created
-
Forum: Plugins
In reply to: [Search & Filter] Show custom text when Search & Filter returns no resultProblem solved with sort of an workaround.
—
For those interested, the search shortcode searched and filtered posts generating a clean page. Instead, I added to the Search shortcode the add_search_param=”1″, that way it used Avada’s search page template for displaying results. When no result showed up, I could edit Avada’s search.php template to show whatever I needed.Was so simple yet it took me so much to figure it out ??
Thank you for this useful plugin! Hope it’ll be compatible with Gutenberg too.Forum: Plugins
In reply to: [Autoptimize] Cached files on returning visitorsThank you for your patience and taking your time to answer these long and painful questions ^_^
Forum: Plugins
In reply to: [Autoptimize] Cached files on returning visitorsWell… Inline and defer CSS breaks the site…guess i have too much css. And force JS in head…also breaks some basic things, like the Contact Form 7 add-ons (conditionals for CF7). So sadly this is not an option at the moment.
I also tried the free Cluodflare plan included with siteground, enabled it from Cpanel but no improvement whatsoever. Do I have to manually enable it on Autoptimize? (AO states that i don’t have to do it for Cloudflare)
EDIT: Removing Jquery from exclusions did fix the Jquery render block. The AO cached blocks still remain :v
3) I have added this extra stuff as recommended by various optimizations on my htaccess file, could this be the problem with the visitors not getting an updated cached file?<IfModule mod_headers.c>
<FilesMatch “.(js|css|xml|gz|html)$”>
Header append Vary: Accept-Encoding
</FilesMatch>
</IfModule>
## END ACCEPT ENCODING ##
## EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive on
ExpiresByType text/css “access plus 14 days”
ExpiresByType text/xml “access plus 0 seconds”
ExpiresByType text/javascript “access plus 14 days”
ExpiresByType application/x-javascript “access plus 14 days”
ExpiresByType image/ico “access plus 14 days”
ExpiresByType image/jpg “access plus 14 days”
ExpiresByType image/jpeg “access plus 14 days”
ExpiresByType image/gif “access plus 14 days”
ExpiresByType image/png “access plus 14 days”
ExpiresByType image/svg+xml “access plus 1 month”
ExpiresByType text/html “access plus 14 days”
ExpiresByType video/ogg “access plus 1 month”
ExpiresByType audio/ogg “access plus 1 month”
ExpiresByType video/mp4 “access plus 1 month”
ExpiresByType video/webm “access plus 1 month”
ExpiresByType application/x-font-woff “access plus 1 month”
ExpiresByType application/vnd.ms-fontobject “access plus 1 month”
ExpiresByType application/xml “access plus 0 seconds”
ExpiresByType application/json “access plus 0 seconds”
ExpiresByType application/rss+xml “access plus 1 hour”
ExpiresByType application/atom+xml “access plus 1 hour”
</IfModule>Very very thanks for the fast response. The least I can do is leave a good review ??