Skip to content

Instantly share code, notes, and snippets.

@blakewilson
Last active February 28, 2018 19:40
Show Gist options
  • Save blakewilson/40558c398194a634aaf1c24c062bc494 to your computer and use it in GitHub Desktop.
Save blakewilson/40558c398194a634aaf1c24c062bc494 to your computer and use it in GitHub Desktop.
Video Background Pro Disable Visual Composer Integration
<?php
/**
* Disable Video Background Pro's Visual Composer Integration
*
* @since 2.2.0
* @author Push Labs
* @param Boolean $is_enabled Boolean decisison to enable/disable the integration
* @return Array $is_enabled
*/
function themeprefix_vidbgpro_disable_vc( $is_enabled ) {
$is_enabled = false;
return $is_enabled;
}
add_filter( 'vidbgpro_enable_vc', 'themeprefix_vidbgpro_disable_vc' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment