Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi, can you see order comments field at checkout form?

    Actually you can change title and placeholder for that field that you can put in your theme functions.php:

    // Hook in
    add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' );
    
    function custom_override_checkout_fields( $fields ) {
         $fields['order']['order_comments']['placeholder'] = 'Write your note on card';
         $fields['order']['order_comments']['label'] = 'Order Note';
         return $fields;
    }

    You can refer here for more information.

    Thread Starter brownlamb

    (@brownlamb)

    Thank You,
    This is what I was needing! The customer note field is there, but some of the customers where not realizing it was there, and would send a note from the contact form! Thanks for your help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Customer note at checkout’ is closed to new replies.