Hi guys,
I’m using your Woo Checkout Editor extension and want to limit the number of characters allowed in the order_comments section of the checkout.
I’ve tried the following but it’s not working:
/**
* Character limit on order notes in checkout */
add_filter( 'woocommerce_checkout_fields', 'filter_checkout_fields' );
function filter_checkout_fields( $fields ) {
$fields['order']['order_comments']['maxlength'] = 250;
return $fields;
}
Hoping you can point me in the right direction.
Cheers
Claire 