This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | add_filter( 'woocommerce_checkout_fields', 'webendev_woocommerce_checkout_fields' ); | |
| /** | |
| * Change Order Notes Placeholder Text - WooCommerce | |
| * | |
| */ | |
| function webendev_woocommerce_checkout_fields( $fields ) { | |
| $fields['order']['order_comments']['placeholder'] = 'Your custom placeholder'; | |
| return $fields; | |
| } |