FOX - Currency Switcher for WooCommerce

SUMO Reward Points - WooCommerce Reward System

Plugin link: https://codecanyon.net/item/sumo-reward-points-woocommerce-reward-system/7791451
  • in file wp-content\plugins\rewardsystem\includes\class-fp-common-functions.php add code:
    if (class_exists('WOOCS') AND $Type != 'price') {
        global $WOOCS;
        if ($WOOCS->is_multiple_allowed) {
            $currrent = $WOOCS->current_currency;
            if ($currrent != $WOOCS->default_currency) {
                $currencies = $WOOCS->get_currencies();
                $rate = $currencies[$currrent]['rate'];
    
                $Value = round($Value / $rate, 2);
            }
        }
    }
    
    $ConvertedValue = ($Type == 'price') ? (((float) $Value / $PointValue) * $RedeemPercent) : (((float) $Value * $PointValue) / $RedeemPercent); //Ex:10 * 2 = 20
    
    if (class_exists('WOOCS') AND $Type == 'price') {
        global $WOOCS;
        if ($WOOCS->is_multiple_allowed) {
            $currrent = $WOOCS->current_currency;
            if ($currrent != $WOOCS->default_currency) {
                $currencies = $WOOCS->get_currencies();
                $rate = $currencies[$currrent]['rate'];
                $ConvertedValue = $ConvertedValue * $rate;
            }
        }
    }
  • AND add code:
    if (class_exists('WOOCS')) {
        global $WOOCS;
        if ($WOOCS->is_multiple_allowed) {
            $currrent = $WOOCS->current_currency;
            if ($currrent != $WOOCS->default_currency) {
                $currencies = $WOOCS->get_currencies();
                $rate = $currencies[$currrent]['rate'];
                $regularprice = $regularprice / $rate;
            }
        }
    }
  • In file wp-content\plugins\rewardsystem\includes\frontend\tab\modules\class-rs-fpredeeming-frontend.php add code:
    if (class_exists('WOOCS')) {
        global $WOOCS;
        if ($WOOCS->is_multiple_allowed) {
            $currrent = $WOOCS->current_currency;
            if ($currrent != $WOOCS->default_currency) {
                $currencies = $WOOCS->get_currencies();
                $rate = $currencies[$currrent]['rate'];
                $Applied_points = $Applied_points / $rate;
            }
        }
    }
 
This edit is inside another plugin's file, so a plugin update will undo it. Write the change down, and re-apply it after every update of that plugin — or ask its authors to include the fix on their side, which is the only version that survives. If the change is inside FOX itself, tell us: a fix that has to be re-applied by hand is a bug on our side, not a solution.