Thread Starter
ajotka
(@ajotka)
Hi!
I found a solution on my own.
In includes/class-wpf-form.php lines 1022 & 1024 should by ‘0’ in str_replace, instead of ‘0000’.
<?php echo str_replace( '0', '<span class="wpf-price-min">' . ( empty( $from ) ? $min : $from ) . '</span>', wc_price( 0, array( 'decimal_separator' => '', 'decimals' => 4 ) ) ); ?>
-
<?php echo str_replace( '0', '<span class="wpf-price-max">' . ( empty( $to ) ? $max : $to ) . '</span>', wc_price( 0, array( 'decimal_separator' => '', 'decimals' => 4 ) ) ); ?>
Let me know when new version with fix will be ready.