Viewing 3 replies - 1 through 3 (of 3 total)
  • This happens when you set comma as decimal separator. I′m having trouble with this too.

    For a quick fix, until @technofreaky has resolved this, insert this into your functions.php:

    function _decimal_fix_patch( $price ) {
    return str_replace(“,”,”.”,$price);
    }

    add_filter(“woocommerce_role_based_product_price_value”, “_decimal_fix_patch”, 0, 1);

    Plugin Author Varun Sridharan

    (@varunms)

    Hi,

    This is fixed in the latest version of this plugin

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘No numbers after decimal’ is closed to new replies.