Performance Tweaks plugin for WordPress

Iā€™m happy to announce that my plugin Performance Tweaks was approved on WordPress.org and is now available at the official WordPress Plugin repository! :slight_smile:

https://wordpress.org/plugins/performance-tweaks/

Currently the plugin includes the following performance options:

ā€¢ ContactForm7 Smart Loader: Removes CSS and JavaScript from ContactForm7 on pages without a form.

ā€¢ Disable Advanced Custom Fields on Frontend: ACF or Advanced Custom Fields is a WordPress plugin to create custom Meta Boxes on your site. Most sites uses ACF to show meta boxes in the Admin area of the site and rarely use it on the front-end. Despite that, ACF loads, JS/CSS files on the front-end as well which can add more resources on the front-end of your site.

ā€¢ Emoji Unloader: Removes Emoji CSS and JavaScript from pages.

ā€¢ Defer JavaScript: Add the defer attribute to JavaScript files.

ā€¢ Async JavaScript: Add the async attribute to JavaScript files.

ā€¢ Remove Query Strings: Remove query strings from static resources. WordPress by default adds a query string to all CSS and JS files used in your site. Having this query string might make some CDNs to not cache these files.

ā€¢ DNS Single Post Prefetch: Enable DNS Prefetching on single posts, so when a user is on single post or page or any custom post type and clicks on the link for homepage then the homepage will open without any delay. Note: DNS Prefetching only works with HTTP2. So, if your server does not support HTTP2 then this will not work.

ā€¢ Disable XML-RPC: The WordPress XML-RPC is a specification that aims to standardize communications between different systems. It uses the HTTP protocol and XML as an encoding mechanism which allows for various data to be transmitted. Are you using any desktop based application to write post for your blog? If not, then its best to disable XML-RPC on your site as this can be used to do a DDOS attack on your site.

ā€¢ Disable WordPress Heartbeat: WP Heartbeat API works by calling the admin-ajax.php file and on server with low memory or shared hosting this can significantly slow down the website.

I hope you like it and feedback is always welcome!

-Rick

3 Likes

Thanks for sharing looks like a very helpful plugin.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.