Advertisement
borkolivic

Untitled

Oct 19th, 2016
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. // Save Custom Field
  2. add_action( 'woocommerce_process_product_meta', 'woo_save_custom_shipping_fields' );
  3.  
  4. function woo_save_custom_shipping_fields( $post_id ){
  5.  
  6.     $woocommerce_text_field = $_POST['delivery_time_frame'];
  7.     if( !empty( $woocommerce_text_field ) )
  8.         update_post_meta( $post_id, 'delivery_time_frame', esc_attr( $woocommerce_text_field ) );
  9.    
  10.     if( empty($woocommerce_text_field)):
  11.             delete_post_meta($post_id,'delivery_time_frame');
  12.     endif;
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement