this is not support in free version but you can enabel by edit code. Folloy my steps here
Step 1 : open wp-content folder then open plugins folder
step 2 : now open counter-number-showcase folder follow this path inc -> admin ->
step3 : open these two files on any code editor add-counter-box.php and add-counter-box-js-footer.phpstep4 : now in first file add-counter-box.php go to line number 673 and find below code
<input type="number" id="counter_value[]" name="counter_value[]" value="<?php echo esc_attr($counter_value); ?>" placeholder="Enter Counter Number Value Here" class="wpsm_ac_label_text">
replace with this (convrt tyor number to type text)
<input type="text" id="counter_value[]" name="counter_value[]" value="<?php echo esc_attr($counter_value); ?>" placeholder="Enter Counter Number Value Here" class="wpsm_ac_label_text">
step5 : same process follow with file add-counter-box-js-footer.php open it on editor and then go to line number 14 and then fine below line of code
'<input type="number" id="counter_value[]" name="counter_value[]" placeholder="Enter Counter Number Value Here" class="wpsm_ac_label_text">'+
replace with this code
'<input type="text" id="counter_value[]" name="counter_value[]" placeholder="Enter Counter Number Value Here" class="wpsm_ac_label_text">'+
Now save files and then you can able to add commas in between number
Let me know if you will gte any issue.
Thanks for getting back to me and sharing this.
I do not see a line 673 on the add-counter-box.php file. It only goes to127? Do I need to upgrade first?