angellombana Posted February 17, 2023 Share Posted February 17, 2023 Hello, how can I limit the required number of characters in the field that customers use at checkout? Link to comment Share on other sites More sharing options...
ps8modules Posted February 17, 2023 Share Posted February 17, 2023 Hi, ./themes/your-theme/templates/checkout/_partials/steps/shipping.tpl find: <textarea rows="2" cols="120" id="delivery_message" name="delivery_message">{$delivery_message}</textarea> replace: (added maxlength="10" => 10 chars) <textarea rows="2" cols="120" id="delivery_message" name="delivery_message" maxlength="10">{$delivery_message}</textarea> 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now