Yeah maybe there’s something you can do on;
caldera-forms\fields\range_slider >> field.php
on <script type=”text/javascript”>
after
<?php
if( false !== strpos( $field[‘config’][‘step’], ‘.’ ) ){
$part = explode(‘.’, $field[‘config’][‘step’] );
?>
//do some modification here…
maybe you can insert ‘<?php echo $thousand_separator; ?>’ with add some function, like in function on calculation_field.php below:
function addCommas(nStr){
nStr += ”;
x = nStr.split(‘.’);
x1 = x[0];
x2 = x.length > 1 ? ‘.’ + x[1] : ”;
var rgx = /(\d+)(\d{3})/;
while (rgx.test(x1)) {
x1 = x1.replace(rgx, ‘$1’ + ‘<?php echo $thousand_separator; ?>’ + ‘$2’);
}
return x1 + x2;
}
//remember modif them to match range_slider needs
//and also modif below value:
value = value.toFixed( <?php echo strlen( $part[1] ); ?> );
//look alike below result on calculation_field.php:
total = total.toFixed(2);
view_total = addCommas( total );
//all modif changes before
<?php } ?>
I my self can’t do a programming, but theres a solution if you want a custom code here at https://calderawp.com/caldera-forms-services/
Just a suggestion maybe you can create a new element named slider_wcomma, because if you do a change on default element they will be overwritten after you update your cf
hope that help, tq