• Resolved WebMat

    (@webmatpro)


    Hello,

    for remove the “Notice: A non well formed numeric value encountered”

    file sliced-invoices/includes/class-sliced-shared.php

    line 523 -$payments_total = $payments_total + $amount;
    line 589 – $line_sub_total = $qty * $amt; // 100

    replace by :

    line 523 -$payments_total = $payments_total + (float)$amount;
    line 589 – $line_sub_total = $qty * (float)$amt; // 100

    Best Regards,
    Mat.

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)

The topic ‘Notice for price decimal (include solution code)’ is closed to new replies.