开发者 | consti |
---|---|
更新时间 | 2016年6月18日 19:29 |
PHP版本: | 3.8 及以上 |
WordPress版本: | 4.5 |
版权: | GPL license http://www.opensource.org/licenses/gpl-license.php |
This plugin only works with a SlimFAQ account. You can get started for free at slimfaq.com.
After signing up for a SlimFAQ account, you can find your FAQ ID in your FAQ's settings page.
Just enable the "show for logged out users" flag on the settings page.
Install and setup the Official Intercom WordPress Plugin - then install the SlimFAQ plugin. In the SlimFAQ settings, enable "Integrate with Intercom".
Sure, just use the ll_slimfaq_output_snippet
filter. Here's an example:
`
add_filter( 'll_slimfaq_output_snippet', 'no_slimfaq_on_page_10' );
function no_slimfaq_on_page_10( $show ) {
if ( is_page( 10 ) )
return false;
return true;
}
`
Possibly, but I've not tried. I can only provide support if you're using the latest version of this plugin together with the latest version of WordPress and PHP 5.2.4 or newer.