FOX - Currency Switcher for WooCommerce

Name Your Price - WooThemes

Lien du plugin : https://woocommerce.com/products/name-your-price/ Dans le fichier plugins\woocommerce-name-your-price\includes\class-wc-name-your-price-cart.php ajoutez le code suivant :
if (class_exists('WOOCS')) {
    global $WOOCS;
    if ($WOOCS->current_currency != $WOOCS->default_currency) {
        $currencies = $WOOCS->get_currencies();
        $posted_price = $posted_price / $currencies[$WOOCS->current_currency]['rate'];
    }
}
Name Your Price - WooThemesName Your Price - WooThemesName Your Price - WooThemesName Your Price - WooThemesName Your Price - WooThemesName Your Price - WooThemesName Your Price - WooThemes

Ancienne version :

  • dans le fichier \wp-content\plugins\woocommerce-name-your-price\includes\class-wc-name-your-price-helpers.php ajoutez le code :
    if (class_exists('WOOCS')) {
        global $WOOCS;
        if ($WOOCS->is_multiple_allowed) {
            $price = $WOOCS->woocs_exchange_value(floatval($price));
        }
    }
  • dans le même fichier ajoutez le code :
    if (class_exists('WOOCS')) {
        global $WOOCS;
        if ($WOOCS->current_currency != $WOOCS->default_currency) {
            $currencies = $WOOCS->get_currencies();
            $posted = $posted / $currencies[$WOOCS->current_currency]['rate'];
        }
    }
  • dans le même code ajoutez le code :
    if (class_exists('WOOCS')) {
        global $WOOCS;
        if ($WOOCS->is_multiple_allowed) {
            $price = $WOOCS->woocs_exchange_value(floatval($price));
        }
    }
  • dans le même code ajoutez le code :
    if (class_exists('WOOCS')) {
        global $WOOCS;
        $price = $WOOCS->woocs_exchange_value(floatval($price));
        $minimum = $WOOCS->woocs_exchange_value(floatval($minimum));
    }
  • ouvrez le fichier plugins\woocommerce-name-your-price\includes\class-wc-name-your-price-cart.php et ajoutez le code suivant :
    $price = (double) WC_Name_Your_Price_Helpers::standardize_number($_REQUEST[$posted_nyp_field]);
    if (class_exists('WOOCS')) {
        global $WOOCS;
        if ($WOOCS->current_currency != $WOOCS->default_currency) {
            $currencies = $WOOCS->get_currencies();
            $price = $price / $currencies[$WOOCS->current_currency]['rate'];
        }
    }
    $cart_item_data['nyp'] = $price;
    
    ET
    if (class_exists('WOOCS')) {
        global $WOOCS;
        $minimum = $WOOCS->woocs_exchange_value(floatval($minimum));
    }