FOX - Currency Switcher for WooCommerce

SUMO Subscriptions - WooCommerce Subscription System

Plugin link: https://codecanyon.net/item/sumo-subscriptions-woocommerce-subscription-system/16486054
  • In file wp-content\plugins\sumosubscriptions\includes\class-subscription-frontend.php add next 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'];
                $line_total = $line_total / $rate;
            }
        }
    }
    
    SUMO Subscriptions - WooCommerce Subscription System
  • In file wp-content\plugins\sumosubscriptions\includes\subscription-UI-functions.php add next code:
    if (class_exists('WOOCS')) {
        global $WOOCS;
        $initial_fee = $WOOCS->woocs_exchange_value($initial_fee);
        $trial_fee = $WOOCS->woocs_exchange_value($trial_fee);
    }
    
    SUMO Subscriptions - WooCommerce Subscription System
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.