Advertisement
verygoodplugins

Untitled

Apr 27th, 2021
995
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. function remove_wpf_actions() {
  2.  
  3.     // Stop WP Fusion from loading the tag condition in the Oxygen builder
  4.     remove_action( 'init', array( wp_fusion()->integrations->oxygen, 'register_condition' ) );
  5.  
  6. }
  7.  
  8. if ( function_exists( 'wp_fusion' ) ) { // This ensures there aren't any errors if WP Fusion isn't active
  9.     add_action( 'plugins_loaded', 'remove_wpf_actions' );
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement