Guest User

Untitled

a guest
Apr 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. woocommerce_form_field('myName', array(
  2. 'type' =>'text',
  3. 'class'=>array('my-field-class form-row-wide'),
  4. 'label'=>__('First Name'),
  5. 'placeholder'=>__('Please enter your name'),
  6. ), $checkout->get_value('myName'));
  7.  
  8. /*Update the info with the checkout*/
  9. add_action('woocommerce_checkout_field_update_order_meta','my_custom_checkout_field_update_meta');
  10. function my_custom_checkout_field_update_meta($order_id){
  11. if($_POST['MyName'])
  12. update_post_meta($order_id, 'First Name',esc_attr($POST['MyName']));
  13. }
Add Comment
Please, Sign In to add comment