Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php // only copy this line if needed
  2.  
  3. add_action( 'init', 'wc_jilt_skip_checkout_form_customizations', 15 );
  4.  
  5. function wc_jilt_skip_checkout_form_customizations() {
  6.  
  7. if ( function_exists( 'wc_jilt' ) && wc_jilt()->get_checkout_handler_instance() ) {
  8.  
  9. remove_filter( 'woocommerce_checkout_fields', array( wc_jilt()->get_checkout_handler_instance(), 'move_checkout_email_field' ), 1 );
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement