Hi, i have the exact same question for german and italian. Are there existing translations of the various strings or have i do them by my own?
Thanks
Roland
https://ww.wp.xz.cn/support/topic/admin-side-restrict-edition-in-some-fields/
Insert this code in your functions.php
As a default we have 30 characters.
Set needed limit. (Change 60 as you want).
add_filter(“vsz_display_character_count”,”vsz_display_character_count_callback”,10,1);
function vsz_display_character_count_callback($count){
// Your custom coding here
return 60;
}