FOX - Currency Switcher for WooCommerce

YITH WooCommerce Subscription Premium

Plugin URL: https://yithemes.com/themes/plugins/yith-woocommerce-subscription/
  • in file wp-content\plugins\yith-woocommerce-subscription-premium\includes\class.ywsbs-subscription-cart.php add next code:
    $rate = 1;
    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'];
            }
        }
    }
  • to the same file add next code:
    $rate = 1;
    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'];
            }
        }
    }
  • to the same file add next code:
    $rate = 1;
    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'];
            }
        }
    }
  • in file wp-content\plugins\yith-woocommerce-subscription-premium\includes\class.ywsbs-subscription-synchronization.php add next code:
    $rate = 1;
    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'];
            }
        }
    }
  • add to file plugins\yith-woocommerce-subscription-premium\templates\cart\ywsbs-recurring-totals.php next code:
    if (class_exists('WOOCS')) {
        global $WOOCS;
        $recurring_price = $WOOCS->woocs_exchange_value(floatval($recurring_price));
    }
 
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.