HomeWordpress PluginsCodeCanyonCURCY - WooCommerce Multi Currency - Currency Switcher 2.4.0

CURCY – WooCommerce Multi Currency – Currency Switcher 2.4.0

CURCY - WooCommerce Multi Currency - Currency Switcher 2.4.0

CURCY – WooCommerce Multi Currency allows your customers to switch between currencies and helps your store accept payments in multi-currency.

Demo WooCommerce Multi Currency CodeCanyon 20948446

WooCommerce Multi Currency Plugin Features

  • Set exchange rate manually
  • Successful update exchange rate email
  • Custom currency symbol
  • Hidden Currency
  • Currency Price Switcher
  • Auto update exchange rate
  • Use SESSION
  • Price formatting
  • Exchange fee
  • Fixed Price
  • Select currency exchange rate sever

Download WooCommerce Multi Currency Plugin

Note: If you are having trouble with CURCY – WooCommerce Multi Currency – Currency Switcher Free Download Latest Version, try to disable AdBlock for the site or try another Web Browser. Disabling AD blocker or change Web Browser not help to you please contact us.

  1. Update to 2.4.0 please, 2.3.13 has incompatibilities with PHP 8.x Throwing errors for webpages.

    Luckily claude could give me a quick fix for version 2.3.13.
    File: wp-content/plugins/woocommerce-multi-currency/includes/data.php

    line 1602:
    replace:
    $initialRates = $data->props->pageProps->initialRatesData->rates;
    foreach ( $other_price as $code ) {
    if ( property_exists( $initialRates, $from_Currency ) && property_exists( $initialRates, $code ) ) {
    $final_rates[ $code ] = floatval( $initialRates->$code ) / floatval( $initialRates->$from_Currency );
    }
    }

    replace with:
    if ( empty( $data ) || ! is_object( $data )
    || ! isset( $data->props->pageProps->initialRatesData->rates ) ) {
    return $final_rates;
    }
    $initialRates = $data->props->pageProps->initialRatesData->rates;
    foreach ( $other_price as $code ) {
    if ( is_object( $initialRates )
    && property_exists( $initialRates, $from_Currency )
    && property_exists( $initialRates, $code ) ) {
    $final_rates[ $code ] = floatval( $initialRates->$code ) / floatval( $initialRates->$from_Currency );
    }
    }

  2. FOX – Currency Switcher Professional for WooCommerce

    That is the plugin in the file when uploaded.

  3. this is FOX – WooCommerce Currency Switcher not CURCY – WooCommerce Multi Currency!!!

LEAVE A REPLY

Please enter your comment!
Please enter your name here