“Per $Points Conversion” setting bug in 1.2.0
-
My “Per $Points Conversion” used to be “2 Points = $1.00”. After upgrade to 1.2.0, it changed to “$2.00 = 1 Points” by itself.
Same wrong information in cart notification. What a big surprise to every customer!A quick fix for the customer facing page, in public/class-points-rewards-for-woocommerce-public.php, change line 1264:
echo wc_price( $order_conversion_rate[‘Points’] ) . ‘ = ‘ . wp_kses( $order_conversion_rate[‘Value’], $allowed_tags );
to:
echo wc_price( $order_conversion_rate[‘Value’] ) . ‘ = ‘ . wp_kses( $order_conversion_rate[‘Points’], $allowed_tags );
Did you even test this before releasing a new version? You guys really need to improve testing.
The topic ‘“Per $Points Conversion” setting bug in 1.2.0’ is closed to new replies.