Load plugin on specific page only

I have plugin I would like to use only on the contact page, however the script and css is being loaded on every page. Aside from the increased http requests, it is also causing another script to not work properly on another page.

Is there a way to stop this plugin from loading anywhere else on the site?

I know how to do this with normal scripts in the header, but I am not sure how to do this with a plugin that automatically injects scripts into the header.

Thanks in advance.

3 s
3

I have figured it out.

There is a good explanation here

You edit the wp.config file with the scripts you wish to not load…

define('WPCF7_LOAD_JS', false);

…and then manually enqueue them on the pages you wish to load the script.

Leave a Comment