Hello,
- This is already possible with the current codes and there is no need to add any data attributes. You can simply add the Text after the <span> Tag. Example:
€
- Unfortunately, this is not supported for Individual Counters at the moment. All the counters will be affected. If you wish to move forward with this, then please find the following code in the js/functions.js File inside the runCounter Function Block:
value = value.replace(/\B(?=(\d{3})+(?!\d))/g, ',');
and replace it with:
value = value.replace(/\B(?=(\d{3})+(?!\d))/g, '.');
and then set the data-comma="true" Attribute on the .counter Element.
This will definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.