• This is great but I’m sure many users would benefit greatly from implementation of any of these features.

    * Ability to exclude certain pages (by pageid, or in a metabox in each post/page settings)

    * Ability to exclude from certain post types. (i believe this alone should be good enough for me)

    Adding the snippet on each page that i want it on is really not ideal because then i have to go do it for many pages. I’m sure most people are on the same boat, when they want to only monitor 98% of their webpages, but for the remaining 2%, would prefer that the chat doesn’t load at all to save script loading time.

    Could these features be implemented going forward?

    Thank you very much!

    https://ww.wp.xz.cn/plugins/zopim-live-chat/

Viewing 2 replies - 1 through 2 (of 2 total)
  • This is working for me…at least for one page. Put into the functions file of your theme…?

    add_action( 'wp_print_scripts', 'my_deregister_javascript', 100 );
    		function my_deregister_javascript() {
    		if ( !is_page('manual') ) {
        	remove_action('wp_footer', array( 'Zopim_Widget', 'zopimme' ) );
         	remove_action( 'plugins_loaded', array( &$this, 'load_textdomain' ) );
    		wp_deregister_script( 'zopim' );
    	}
    
    	}
    jasondrhodes

    (@jrnetwork)

    Hi @mykill73, with your code above for the functions.php file, how have you specified a particular page there.

    I have a few pages on a wordpress website where I don’t want the zopim chat to appear, such as leadin / landing pages etc.

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Would Feature Request be available going forward? (Exclude pages, or post types)’ is closed to new replies.