Allow for decimals in comissions
Can you please allow for decimals in commissions of the vendor plugin?
As far as I can see the only thing which should be adjusted is in class-wc-product-vendors-utils.php:164
This line:
return absint( str_replace( '%', '', trim( $commission ) ) );
should actually be:
return abs( floatval( str_replace('%', '', trim( $commission ) ) ) );

1 comment
-
Marco Betschart commented
Actually it should even be something like the following, to also allow a comma as decimal separator:
return abs( floatval( str_replace( ',', '.', str_replace('%', '', trim( $commission ) ) ) ) );