Advertisement
CodeDropz

Drag & Drop Uploader WooCommerce Pro - Override Upload Display

Oct 10th, 2023
716
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. add_action('plugins_loaded', 'codedropz_upload_condition');
  2.  
  3. function codedropz_upload_condition(){
  4.    
  5.     $filter = get_option('show_in_dnd_file_upload_after');
  6.     $codedropz = DNDMFU_WC_PRO_HOOKS::get_instance();
  7.    
  8.     // remove/unregister current hook
  9.     remove_action( $filter, [ $codedropz, 'dndmfu_wc_display_file_upload' ], 500 );
  10.    
  11.     // Your categories condition here (ie: woocommerce_before_variations_form)
  12.     add_action( 'woocommerce_before_variations_form', [ $codedropz, 'dndmfu_wc_display_file_upload' ], 500 );
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement