Advertisement
wclovers

Untitled

Oct 26th, 2023
676
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. add_filter('wcfm_shipment_tracking_fields', function($fields) {
  2.     if( isset( $fields['wcfm_tracking_code'] ) ) {
  3.         unset( $fields['wcfm_tracking_code']['custom_attributes'] );   
  4.     }
  5.     if( isset( $fields['wcfm_tracking_url'] ) ) {
  6.         unset( $fields['wcfm_tracking_url']['custom_attributes'] );
  7.     }
  8.  
  9.     return $fields;
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement