WooCommerce Customer Note Character Limit (200)
-
The character limit for a customer note when checking out is currently set to 200. I was wondering where this setting is configured and how I can increase this to 400 or more.
The code below will help explain which note I am talking about (I have customised the text of the note to display “Card Message” instead of Customer Note.
$this->checkout_fields[‘order’] = array(
‘order_comments’ => array(
‘type’ => ‘textarea’,
‘class’ => array(‘notes’),
‘label’ => __( ‘Card Message’, ‘woocommerce’ ),
‘placeholder’ => _x(‘Message to write on card, e.g. Dear Rose, happy birthday…..’, ‘placeholder’, ‘woocommerce’)
)
);$this->checkout_fields = apply_filters( ‘woocommerce_checkout_fields’, $this->checkout_fields );
- The topic ‘WooCommerce Customer Note Character Limit (200)’ is closed to new replies.