Advertisement
verygoodplugins

Untitled

Jul 15th, 2020
1,054
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. function wpf_adjust_action_priority() {
  2.  
  3.     if ( function_exists( 'wp_fusion' ) ) {
  4.  
  5.         remove_action( 'woocommerce_order_status_processing', array( wp_fusion()->integrations->woocommerce, 'woocommerce_apply_tags_checkout' ), 10, 1 );
  6.         add_action( 'woocommerce_order_status_processing', array( wp_fusion()->integrations->woocommerce, 'woocommerce_apply_tags_checkout' ), 1, 1 );
  7.  
  8.     }
  9.  
  10. }
  11.  
  12. add_action( 'init', 'wpf_adjust_action_priority' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement