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.
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.
Share Improve this question asked Dec 24, 2012 at 12:39 AdamAdam 6555 gold badges11 silver badges19 bronze badges3 Answers
Reset to default 4I 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.
Try using
if(is_page('contact-page-slug')){
to add your functions to that page only.
Try this CODE:
if ( ! is_page('THE NAME OF THE PAGE WHERE YOU WANT CF7 TO RUN') ) {
add_filter( 'wpcf7_load_js', '__return_false' );
add_filter( 'wpcf7_load_css', '__return_false' );
}
Source: From the official CF7 page.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745467251a4628970.html
评论列表(0条)