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. As

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 badges
Add a comment  | 

3 Answers 3

Reset to default 4

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.

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

相关推荐

  • 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. As

    3小时前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信