Plugin Contributor
David G
(@gravid7)
Hi @aands,
Sorry, this kind of setting isn’t available in the plugin. but using WooCommerce > Settings > Booster > Emails & Misc. > Custom JS module you can limit the number of characters on input fields.
jQuery(document).ready(function() {
jQuery(“#wcj_product_input_fields_global_1”).attr(“maxlength”,”50″);
});
Please replace “#wcj_product_input_fields_global_1” with your input fields id.
Thanks, @gravid7
Could you please help me to find the id?
Is this the input filed id?
https://prnt.sc/10v5r5g
Plugin Contributor
David G
(@gravid7)
Hi @aands
You can find the ID from the product inspect element of the product detail page. Also, If you are unable to find the ID then you can provide us product URL. We will check and provide you the ID.
Plugin Contributor
David G
(@gravid7)
Hi @aands
I have checked the product URL and the ID is ‘wcj_product_input_fields_local_1’. Please check and let me know if it’s working or not.
Great. It is working now.Thanks a lot.