How to speed up WordPress with Plesk and WP Super Cache, WP Rocket, Autoptimize Free

- Advertisement -

https://websavers.ca/how-to-speed-up-wordpress

 

- Advertisement -

This guide includes 9 tips to show you how to take just about any WordPress site to a maximum 1-2 seconds load time. If you’ve selected a hosting partner and resources (theme, plugins, etc) that are built from the ground up for speed, then you can reach fractions of a second load times per page. In such instances, sub-300 millisecond page load times are the norm! Here’s an overview of what we’re about to dive into:

- Advertisement -
  1. Use a WordPress performance optimized web host
  2. Install and activate the latest release of PHP 7
  3. Enable Gzip compression
  4. Enable long expiry browser caching for static resources
  5. Use a Server-Side static cache generator
  6. Use a Code Minifier and Optimizer Plugin
  7. Compress image files
  8. Configure Nginx to Load Static Cache Output [Advanced]
  9. Disable unused PHP modules [Advanced]

Read on to get started!

This guide will not:

  • Help you fix problems with your hosting provider or their poor performance. Using a high quality WordPress host makes a huge difference.
  • Help you with issues with plugins or themes that could be heavily slowing things down. For example many plugins and themes make external resource calls that you cannot control, which will inherently bring down the speed of your site. Therefore you may need to disable parts of your website (theme, plugins, etc) in order for it to play nicely with your caching plugin. If you’re using themes and plugins that optimize for performance, then you’ll find that enabling caching will work perfectly without much fiddling.
  • Allow you to have your cake and eat it too. If you love exceptionally high quality images that are each 1MB+ or not-sufficiently-compressed video files, then you’re never going to get top marks on website bench-marking utilities. Similarly if you’ve got a part of your site that loads dynamic content on every page load, you may need to turn that functionality off or find another way to load it for optimal performance. You may need to sacrifice quality and functionality for speed if you want top marks.

If you’re experiencing a problem where a page takes longer than 10 seconds before it even begins loading content, there’s often an underlying problem with WordPress or the hosting configuration that you must resolve before turning to caching for a solution. Click here for help troubleshooting issues with suddenly very slow loading pages.

If you are comfortable with all of the instructions in this article, then you should do them all to improve the performance of your website. If you’re a basic user, it’s also OK to only complete the sections you’re comfortable with. You’ll still see a performance improvement, just not as much as when you are able to complete all options.

Some parts will provide massive load time improvements while others will be negligible. Some parts will make a synthetic speed test like Google’s PageSpeed or GTMetrix speed test think highly of your site but may not create a difference in real-world load times. Such is the nature of synthetic bench-marking tools.

UPDATE HISTORY:

  • Jan 10, 2020: Add improved instructions for configuring browser caching rules in Plesk to improve scores on synthetic benchmarks like Google Page Speed and GTMetrix.
  • Dec 31, 2019: Remove our recommendation to use nginx direct to PHP-FPM processing and instead use rules that will ensure nginx will directly serve your caching plugin’s static cache file output, bypassing apache. This results in identical performance for most website visitors, but much better security, if your host has Plesk’s web application firewall properly configured.
  • Oct 15, 2019: Split step 5 into 2 sections (now 5 and 6) — static cache generating in step 5 (which improves performance but doesn’t break websites) and optimization of resources in step 6 (which improves scores on things like Google Page Speed, but which can also break your website).
  • Feb 4, 2019: Replace Better WordPress Minification with Autoptimize as recommended minification system.
  • Jan 9, 2019: Add PHP 7.3 Info
  • Dec 3, 2018: Reformatted post for better understanding of difference between browser cache vs. nginx->php-fpm direct mode. Use Plesk recommended rewrite rules for nginx.
  • Jul 4, 2017: Added ShortPixel as an image compression option, reformatted post.
  • Feb 20, 2016: Added commercial option, WP Rocket, as a great paid replacement for WP Super Cache + WP Minify.
  • Jun 16, 2017: Added some hosting/server tips.
  • Dec 25, 2013: Original Post Date.

Without further ado, here’s 9 things you can do to dramatically improve your website performance:

1. Use a web host that cares about performance

If your web hosting provider loads down their servers with thousands of websites or doesn’t know how to get the most out of their servers, then it’s inevitable that you’ll encounter frequent slowdowns.

If you’re on shared hosting, be sure your host artificially limits the total number of sites per server to ensure your site will have the resources it needs to perform well. If you have your own VPS, ask your host how it’s configured and what parts of the configuration are designed to ensure top performance. If their answer doesn’t include things like SSD storage, nginx or lightspeed web server, and custom optimized configurations to serve static cache files, then it’s time to find a better WordPress web host.

If you’re very concerned about performance then it’s recommended to obtain a VPS of your own to ensure your site has dedicated resources. We often recommend trying out our underloaded shared hosting first and if you find you need even greater performance, you can always move on up to a VPS.

2. Use the Latest PHP 7 Release

You can take a look at some of the metrics here. With opcache enabled (it is on by default when using PHP 5.6+ in Plesk) you can see anywhere from a 2 – 4x improvement in site speed. And all you need to do is ensure your web host, theme, and plugins support the newer releases of PHP. That’s it! If they do then it should be a very simple flip of the switch to better performance. If you can use PHP 7.3, it provides as much as an additional 30% improvement in performance over 7.2 and earlier.

That sounds great… but how do I use it?

  • First, log into Plesk
  • Under the domain in question, go to “PHP Settings”
  • There will be two dropdowns at the top of the page; one for PHP Version, one for the PHP Handler. For the version, try the latest version, then if you encounter issues repeatedly step down a version until the site works. If you do encounter problems with the latest release of PHP, ultimately your best bet will be finding the source of the issue and fixing it, like updating an incompatible plugin or theme, however we recognize that this isn’t always possible.
  • Scroll to the bottom and click “OK” or “Apply”

3. Enable Gzip Compression

Are you using Websavers’ shared hosting or managed VPS services? If so, we’ve already enabled Gzip compression for you! It’s active on all shared hosting and Platinum Management VPS offerings. Not experiencing the Websavers difference yet? Well, we’ll hopefully see you soon.

If you don’t host with us, most caching plugins take care of this for you, however if yours does not, add these values to your .htaccess file to ad GZIP compression on your website:

<IfModule mod_deflate.c>
# Compress HTML, CSS, JavaScript, Text, XML and fonts
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
AddOutputFilterByType DEFLATE application/x-font
AddOutputFilterByType DEFLATE application/x-font-opentype
AddOutputFilterByType DEFLATE application/x-font-otf
AddOutputFilterByType DEFLATE application/x-font-truetype
AddOutputFilterByType DEFLATE application/x-font-ttf
AddOutputFilterByType DEFLATE application/x-javascript
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE font/opentype
AddOutputFilterByType DEFLATE font/otf
AddOutputFilterByType DEFLATE font/ttf
AddOutputFilterByType DEFLATE image/svg+xml
AddOutputFilterByType DEFLATE image/x-icon
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/javascript
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/xml
</IfModule>

This tells Apache to compress all compatible content before sending it – saving time and bandwidth!

Using Nginx only? Use this in your Nginx directives (not .htaccess):

gzip on;
gzip_disable "MSIE [1-6]\\.(?!.*SV1)";
gzip_proxied any;
gzip_comp_level 5;
gzip_types text/plain text/css application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript image/x-icon image/bmp image/svg+xml;
gzip_vary on;

4. Enable Long Expiry for Browser Cache

First it’s important to understand what exactly browser caching is. Ever have someone tell you to ‘clear your cache’ on your browser? That’s because modern browsers are configured to download copies of resources (HTML/CSS/JS/Images) to speed up page speeds on subsequent visits. By default, though, some of these items are set to ‘expire’ very quickly – which doesn’t help with speed much!

In a later section we’ll talk about using a Caching Plugin for WordPress. If you’re using strictly apache web server, all of the caching plugins will also enable long expiry values for browser caching for you.

This is not recommended if you’re still developing your site. Please only apply this config when the site is live.

That said, if your site is live and you want to squeeze a bit more performance out of it, you can configure your server to tell visitors how long to hold on to certain resources.

These directives are sent by the server to instruct the browser of every visitor how long to ‘hold on’ to various file types.

Using apache web server?

Add the following to your .htaccess file.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
## EXPIRES CACHING ##
&lt;IfModule mod_expires.c&gt;
ExpiresActive On
ExpiresByType image/jpg "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
ExpiresByType text/css "access plus 1 month"
ExpiresByType text/html "access plus 1 week"
ExpiresByType application/x-compressed "access plus 1 week" ExpiresByType application/x-gzip "access plus 1 week"
ExpiresByType application/pdf "access plus 1 month"
ExpiresByType text/x-javascript "access plus 1 month"
ExpiresByType application/x-javascript "access plus 1 month" ExpiresByType application/x-shockwave-flash "access plus 1 month" ExpiresByType image/x-icon "access plus 1 year"
ExpiresDefault "access plus 1 week"
&lt;/IfModule&gt;
## EXPIRES CACHING END ##

Using nginx with Plesk

  • Log in to Plesk and go to “Apache & nginx settings” under the domain you’re optimizing
  • Under Expires > Enter custom value enter 365 days. and check the box: response with Expires headers for static files only
  • Under Additional headers > Enter custom value enter Vary: Accept-Encoding
  • Check the boxes beside Smart static files processing and Serve static files directly by nginx

In the event the “Serve static files directly by nginx” option does not have all of these static file extensions listed (either with spaces or | between them), paste this in the provided box:

ac3|atom|avi|bmp|bz2|css|csv|cue|dat|doc|docx|dts|eot|exe|flv|gif|gz|htm|html|ico|img|iso|jpeg|jpg|js|map|mid|midi|mkv|mp3|mp4|mpeg|mpg|m4a|ogg|ogv|otf|pdf|png|ppt|pptx|qt|rar|rm|rss|rtf|svg|svgz|swf|tar|tgz|ttf|txt|wav|webp|woff|woff2|xls|xlsx|zip

Now Click Apply or OK to save your changes.

Using barebones nginx

Add this to your nginx config:

1
2
3
4
5
6
7
8
9
location ~* \.(css|js)$ {
        
gzip_vary on;
        
expires 30d;
}
location ~* \.(ac3|atom|avi|bmp|bz2|css|csv|cue|dat|doc|docx|dts|eot|exe|flv|gif|gz|htm|html|ico|img|iso|jpeg|jpg|js|map|mid|midi|mkv|mp3|mp4|mpeg|mpg|m4a|ogg|ogv|otf|pdf|png|ppt|pptx|qt|rar|rm|rss|rtf|svg|svgz|swf|tar|tgz|ttf|txt|wav|webp|woff|woff2|xls|xlsx|zip)$ {     
        
gzip_vary on;
        
expires max; 
        
log_not_found off;
}

5. Use a Server-Side Static Cache Generator

In our testing the best commercial option for this is WP Rocket and the best free option for this is WP Super Cache. Both will create static cache files for each of your site’s pages and posts and both will work exceptionally well with our custom nginx configuration that auto-detects the static files and serves those without the need to launch a heavier Apache and/or PHP process. The advantages we’ve found to paying for WP Rocket over free caching plugins are almost exclusively in the website code minification and optimization part of things. See part 6 of this guide below for more info on that.

Tip: as of Dec 2018 we’re using custom nginx directives across all of our servers to auto-detect the use of the most common server-side page caching plugins and automatically serve their static html files directly with nginx without having to funnel through to apache or the PHP processor. Neat, huh? This includes WP Rocket, WP Super Cache, WP Fastest Cache, and W3 Total Cache.

These static cache generating plugins can allow your site to handle massive spikes in traffic without breaking a sweat even on our shared hosting services!

We’ve used these configurations to bring a site on shared hosting to around 100k daily unique views without any problems, and a site on its own VPS to over 500k daily unique page views at an average load of 1.0.

If your host can’t keep up, check out our Canadian WordPress hosting options. Even better, with the optimizations described in this step, step 6 (optimizing), and step 7 (image compression), your site can go from a failing, or otherwise low, Google Page Speed score to a 90+, depending upon the theme and plugins used.

Here’s how to get static cache output from our two favourite caching plugins:

  • WP Rocket: Here’s how to install and activate WP Rocket using their guide. Once activated, it will automatically begin creating a static cache.
  • WP Super Cache: log in to your WordPress installation and go to Plugins > Add New. Install WP Super Cache and activate it. Head to Settings > WP Super Cache and select “Turn Caching On” and press the Update Status button. Click on the Advanced tab. Check off everything with “Recommended” next to it. Press the Update Status button. Scroll down to the “Expiry Time & Garbage Collection” section and set the interval to either once or twice daily, then press the “Change Expiration” button.

Some people prefer W3 Total Cache and others like WP Fastest Cache, among many other caching plugins. In general these plugins are great at handling performance improvements, and any of the ones listed above will work great at generating static cache files for faster website performance. They don’t all tend to to be as consistently good at optimizing as described in step 6 below.

Now, open up a different browser than the one you’re logged in to WordPress with, and load any page on your site. Once it’s done loading, refresh the page. You should find the refresh is now significantly faster than the initial page load. This is not *only* because your browser has used that first page load to cache resources, but also (most significantly) because the server used that initial page load to create a static cache file that is then served on subsequent visits.

Enabling static page caching should not have any effect on your site’s functionality, but will dramatically improve the TTFB (time to first byte) of your website as the server will be able to supply each page much faster than before. The single exception to this is if you have dynamic data that changes on the site that does not use AJAX; that part of your site will not automatically update on every page load. If this occurs, talk to your website developer and ask them to change the feature so that it uses AJAX.

In part 6 below, you can read about how to configure either WP Rocket or SuperCache + Autoptimize to handle more aggressive on-site optimizations that will dramatically improve your Google Page Speed score.

6. Use a Code Minifier and Optimizer Plugin

Generally speaking you want to stick to a single optimization plugin at a time, however WP Super Cache and Autoptimize are actually designed to work together. WP Rocket has the functionality of WP Super Cache and Autoptimize combined in that it both generates static cache files (as described in part 5 above) and minifies and optimizes the site code.

Autoptimize does work with WP Rocket, in that WP Rocket will simply disable its optimization functionality when Autoptimze is detected, however in most cases we’ve found it unnecessary as WP Rocket has the same functionality already built in. WP Rocket’s optimization functionality also tends to be better at not breaking websites than Autoptimize when features like minification and deferral of scripts are enabled.

When it comes to optimizing site code (like minification), which is often needed to obtain higher scores with Google Page Speed or GTMetrix, we’ve never been able to get W3 Total Cache or WP Fastest Cache (among others) to work as well as Autoptimize or WP Rocket’s optimization functions.

Please note: this is the stage where enabling some optimizations may break parts of your site, particularly if the theme, plugin, or custom code hasn’t been written to work well with optimization. If this occurs for you, please see the troubleshooting steps below to learn how to fix it.

WP Rocket (Our Fav, Paid)

If you haven’t completed part 5 above, install and activate WP Rocket using their guide. Then go to Settings > WP Rocket to get started.

Cache Tab:

  • Enable caching for mobile devices. If you use a completely separate mobile site (not recommended) or if you use a lot of elements which only appear on mobile (like swapping parts of a page between a mobile version and desktop version), then check the box to Separate cache files for mobile devices.
  • Enable caching for logged-in WordPress users

Save Changes

File Optimization Tab:

  • Check every box on this page except Safe mode for jQuery
  • Clear the WP Rocket cache
  • Load your site in another browser
  • Check your browser web inspector’s console tab for errors.
  • If you see any errors that look like: ‘jQuery is not defined’ or ‘jQuery is not found’, you will either need to figure out why a plugin, theme, or custom code is not loading its javascript correctly in the footer, or take the easy route and check the box beside “Safe Mode for jQuery” to fix it.
    Note: Using safe mode for jQuery will reduce your website scores in synthetic benchmarks, but you probably won’t actually feel much of a speed difference.

Media Tab:

  • Enable everything on this page.

Add-Ons Tab:

  • If you have Google Analytics enabled on your site (but not through Google Tag Manager) enable the Google Tracking addon.
  • If you use Facebook Pixel tracking code on your site, enable the Facebook Pixel addon.
  • If your server uses Varnish cache (ours do not because nginx caching is available instead), you should enable the Varnish add-on here.

WP Super Cache + Autoptimize (Free)

If you haven’t completed part 5 above, do so now, then log in to your WordPress installation and go to Plugins > Add New and install and activate Autoptimize

Configuring Autoptimize

  • Go to Settings > Autoptimize and make sure that Javascript, CSS and HTML minification are enabled.
  • Under the Extra tab, beside Google Fonts, try out the option to “Combine and load fonts asynchronously with webfont.js” as well as “Removing Query Strings”.
  • Press “Save Changes”.

Troubleshooting Broken Elements

After enabling optimizations in either WP Rocket or Autoptimze, it’s possible you will see broken elements on the site, depending on plugins used, your theme, and a variety of other things. Here’s some common reasons and fixes:

Images or Videos are missing:

If your theme or page builder uses Javascript to load images on your site, the Lazyload for images and videos option may break that and you will need to disable lazyload on the pages that have this content. See the “Per-Page” section below to learn how to do this.

Global pieces of my site aren’t working, like a menu

If it’s custom code, it’s best to try to fix the code responsible. If it’s functionality provided by a theme or plugin, try to replace that functionality with another theme or plugin (as the theme or plugin is probably not built for speed). You could also report the compatibility issue to the developer of the theme or plugin so they can fix it.

If you’re unable to fix the code or replace the software that isn’t optimized for speed, disable each of the types of minification (e.g.: under the File Optimization Tab in WP Rocket) one-by-one until you see the problem go away, then enable everything again except the setting you last disabled, as it was causing the problem.

If you’re an advanced user, then you can re-enable the setting that didn’t work for you, then use a web inspector to inspect the page and find out which file is causing the problem. Once you’ve found it, go into the WP Rocket or Autoptimize config and exclude just that singular file from minification. (This will likely decrease your page speed score)

Per-Page Exclusions

If you find only select pages having problems, you can disable the option causing problems on that page alone. Edit the page in WordPress, and look for the “Cache Options” box on the right.

If you know which part of the caching plugin is causing problems, uncheck it. If you don’t, uncheck them one at a time, and view the page to see if the issue is resolved. Repeat this for each option until you find the problem setting.

7. Compress image files

This is only going to give you a small noticeable speed boost (unless you’re on a very slow Internet connection), but it can improve your Google page speed score quite a bit.

Please note that you should expect a drop in image quality for the images on your site if you truly want to optimize the site to its max. On the flip side, definitely feel free to keep the image quality high, however you’ll have to do so at the expense of page load times on slower connections and synthetic benchmark scores like Google PageSpeed. You simply have to choose which you prefer: high quality images or better benchmark scores. You can’t have both.

Original manual method: Run all PNG files through a compressor then upload them overtop of their prior versions. You may not have these tools available, but I opened all PNG files in Photoshop and exported them for web. If you do this make sure that the files do not include Metadata as this can eat up large portions of the files — especially for icons.

[Update Jun 16, 2017]: We now use Imagify to handle this for us, all server-side. It’s a fantastic plugin provided by the same folks as WP Rocket that will automatically manage the compression of your images either as a one-shot deal or ongoing (it’s up to you!)

[Update Jul 4, 2018] Another option is the plugin ShortPixel, it works just as well as Imagify in our testing and also offers very fair pricing.

Check out all of our recommended resources here.

8. Configure Nginx to Load Static Cache Output [Advanced]

Only those using a host with an nginx reverse proxy can take advantage of this option. This applies to anyone using Plesk 12 or newer unless the host is doing weird things with their server configuration.

Because nginx is a lighter weight web server engine than apache, by configuring nginx to directly serve these static files, we dramatically improve performance. For every single request, rather than using an nginx thread to launch an apache process to handle the request, we’re going to configure nginx to only use the nginx thread and not bother to load apache at all for all pages for which we have a static cache file. Cool eh?

If your hosting is with Websavers, you don’t have to do any of this, as we do this automatically with all shared hosting and managed VPS hosting accounts.

If your hosting is not with us, then you must have admin access to Plesk to be able to apply these changes. You will typically only have admin access if you have your own VPS or dedicated server.

Configure nginx to load WP Super Cache’s static cache files

Remember above when we told WP Super Cache to use mod_rewrite to serve our cache files? This is pretty much automatic if you’re using apache because WP Super Cache will automatically modify your .htaccess file to include the necessary mod_rewrite rules.

Inserting the following in your nginx configuration will tell nginx to bypass apache entirely when serving WP Super Cache’s static output. In Plesk, you do this under the domain’s “Apache & nginx Settings” then under the Additional nginx directives field.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
### WP Super Cache Below ###
set $cache_uri $request_uri;
 
# POST requests and urls with a query string should always go to PHP
if ($request_method = POST) {
    
set $cache_uri 'null cache';
}  
if ($query_string != "") {
    
set $cache_uri 'null cache';
}  
 
# Don't cache uris containing the following segments
if ($request_uri ~* "(/wp-admin/|/xmlrpc.php|/wp-(app|cron|login|register|mail).php|wp-.*.php|/feed/|index.php|wp-comments-popup.php|wp-links-opml.php|wp-locations.php|sitemap(_index)?.xml|[a-z0-9_-]+-sitemap([0-9]+)?.xml)") {
    
set $cache_uri 'null cache';
}  
 
# Don't use the cache for logged in users or recent commenters
if ($http_cookie ~* "comment_author|wordpress_[a-f0-9]+|wp-postpass|wordpress_logged_in") {
     
set $cache_uri 'null cache';
}
 
# Use cached or actual file if they exists, otherwise pass request to WordPress
location ~ / {
   
try_files /wp-content/cache/supercache/$http_host/$cache_uri/index.html $uri /index.php;
}

It’s important to note that you may have some issues with the supplied nginx rules if you’re using WordPress in a subdirectory, especially if you have a ‘nested’ install (with WordPress in the base directory and another WordPress installation in a subdirectory). It can be done with a lot of tricky changes to the supplied rules, but it’s definitely easier on all counts if you change your structure to use a subdomain rather than subfolder.

Configure nginx to load static cache files (WP Rocket)

We made use of this handy WP Rocket nginx config by generating a config (follow the installation instructions), then pasting the result into the advanced nginx configuration directives location in Plesk.

We have made adjustments to the configuration that we’ve found have worked best for our environment; if you’d like to take advantage of our optimizations, look into hosting with Websavers! It’s also important to note that this configuration has gzip compression built in, so you don’t need those directives when you host with us: it’s all automatic!

9. Disable unused PHP modules [Advanced]

Plesk Admin Access Required (VPS Only)

If you have full admin access to your VPS, you can actually disable PHP modules you don’t need. Less things to load into memory, less memory use, less intensive processing, and faster performance. This is very advanced stuff, though, so make sure you either know what you’re doing or aren’t doing it on a live server so you’re not breaking anything ?

  • Go to Tools and Settings in Plesk
  • Under General Settings click PHP Settings
  • Select the PHP version and handler you want to change settings for
  • Toggle PHP modules off that you’re not using
  • Click OK or Apply to save

Now go back to your website and make sure nothing’s broken! You may not know what modules are used in every aspect of your website, so there could be a fair bit of trial and error to get this right.

ReCAPTCHA v3 Bonus Tip

If you are using Google ReCAPTCHA for bot protection, either on a contact/quote form or to protect your blog post comments, we don’t blame ya, it’s a decent system to prevent bots from submitting your forms.

ReCAPTCHA v2 is the type of captcha everyone knows and kinda hates where you ‘check a box’ to confirm you’re not a bot. The hate comes in when the system pops up a verification where you have to click on images that match a description like “select all images with a truck in them”. Sound familiar?

ReCAPTCHA v3 is ‘invisible’ in that there’s no checkbox required, making for an improved user experience. But, it has some site speed downsides in that it must load all of its scripts on every page of your website. It tracks users as they navigate your site because their behaviours will help to determine if they’re bots or not.

Because these scripts are loaded on every page, the only way you can prevent those resources from being flagged by GTMetrix and other synthetic benchmarking tools is by switching back to v2 (if your form or recaptcha plugin allows it) because then the resources will only be loaded on the pages where the forms exist.

Advanced users: you can write a WordPress hook that dequeues the ReCAPTCHA v3 resources on all pages except those with your forms, but you should know that doing this will very likely decrease the effectiveness of ReCAPTCHA’s protection.

- Advertisement -

Share it with friends:

Related Articles

Get in Touch

175FansLike
112FollowersFollow

Latest Posts

Popular Posts