Make sure to install all the updates
It’s recommended to keep the theme and plugins updated always. The update will bring bug fixes and features that can lead to better performance.
This tip appears in the control panel when there are any updates for any theme/plugin. You can see all the available updated in Dashboard > Updates.
How to resolve this tip
Apply all the available updates in your site.
Reduce the number of active plugins
The number of active plugins can affect your site performance. It’s recommenced to choose and activate your plugins wisely and when you don’t need any plugin, keep it inactive.
This tip appears in the control panel when there are more than 20 active plugins.
How to resolve this tip
Check all of your active plugins and disable the ones you don’t need, if possible.
Turn off Development Mode on a production site
In the Jupiter X theme, there is an option called Development Mode. By default, it is disabled. This option is responsible for adding some markups IDs and minification of assets.
This tip appears in the control panel when this option is enabled from Control Panel > Settings.
How to resolve this tip
When you are done with your site development, go to Control Panel > Settings and disable Development Mode option.
Limit the number of post revisions (recommended under 10)
Whenever you save a post/page in WordPress, it creates a revision. Revisions are helpful in a case that you need to revert back to a previous version of your post.
This tip appears in the control panel when the number of revisions is set to unlimited or it is more than 10.
How to resolve this tip
- To completely disable the revisions, you can add
define('WP_POST_REVISIONS', false);
in yourwp-config.php
file. It’s not recommended to do this. - To limit the revisions, you can add
define('WP_POST_REVISIONS', 5);
in yourwp-config.php
file. Recommended number is under 10.
WP-Sweep plugin is a handy plugin, to clear the post revisions.