Advertisement
verygoodplugins

Untitled

May 23rd, 2020
2,402
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. function my_remove_gforms_action() {
  2.  
  3.     if ( function_exists( 'wp_fusion' ) ) {
  4.  
  5.         remove_action( 'gform_user_registered', array( wp_fusion()->integrations->{'gravity-forms'}, 'user_registered' ), 10, 4 );
  6.  
  7.     }
  8.  
  9. }
  10.  
  11. add_action( 'wp_loaded', 'my_remove_gforms_action', 100 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement