Category / Section
How to Increase the Length of the Description Field in the Web Forms and Web Widgets
Published:
You can increase the length of the description field in the web form and web widgets by pasting the following custom JS codes.
To do this, go to Admin > Web Widgets/Web Forms > Advanced Customization > Custom JS.
Custom JS code
Find the custom JS codes provided below.
if(document.querySelector('#description_wrapper')) {
document.querySelector('#description_wrapper').querySelector('textarea').maxLength = 2000;
}