• Hi,

    I am looking for a setting to add commas to the numerical value. Example: my client is wanting to show an Annual Project Value of 100,000,000, but am unable to add the commas or find a setting to turn this on? How would I go about getting this done?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Ankit Jangid

    (@ankitjangid2514)

    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.php

    step4 : 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.

    Thread Starter chadwheeler71

    (@chadwheeler71)

    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?

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Commas in Counter’ is closed to new replies.