Skip to content

Instantly share code, notes, and snippets.

@tormjens
Created August 29, 2014 18:08
Show Gist options
  • Save tormjens/43a26c2d7ac36a77f72e to your computer and use it in GitHub Desktop.
Save tormjens/43a26c2d7ac36a77f72e to your computer and use it in GitHub Desktop.
Change the visibility status of the LiveChat feature of Smart Settings.
<?php
function my_livechat_visible( $display ) {
return 'both'; // accepted values are 'both', 'admin', 'public' or 'none'. default is 'both'
}
add_filter( 'smart_settings_show_livechat_code', 'my_livechat_visible' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment