Plugin-Link: https://woocommerce.com/products/name-your-price/
Fügen Sie in der Datei plugins\woocommerce-name-your-price\includes\class-wc-name-your-price-cart.php den folgenden Code hinzu:
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'];
}
}
Alte Version:
- Fügen Sie in der Datei \wp-content\plugins\woocommerce-name-your-price\includes\class-wc-name-your-price-helpers.php Code hinzu:
if (class_exists('WOOCS')) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$price = $WOOCS->woocs_exchange_value(floatval($price));
}
}
- Fügen Sie in derselben Datei Code hinzu:
if (class_exists('WOOCS')) {
global $WOOCS;
if ($WOOCS->current_currency != $WOOCS->default_currency) {
$currencies = $WOOCS->get_currencies();
$posted = $posted / $currencies[$WOOCS->current_currency]['rate'];
}
}
- Fügen Sie im selben Code Code hinzu:
if (class_exists('WOOCS')) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$price = $WOOCS->woocs_exchange_value(floatval($price));
}
}
- Fügen Sie im selben Code Code hinzu:
if (class_exists('WOOCS')) {
global $WOOCS;
$price = $WOOCS->woocs_exchange_value(floatval($price));
$minimum = $WOOCS->woocs_exchange_value(floatval($minimum));
}
- Öffnen Sie die Datei plugins\woocommerce-name-your-price\includes\class-wc-name-your-price-cart.php und fügen Sie den folgenden Code hinzu:
$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;
UND
if (class_exists('WOOCS')) {
global $WOOCS;
$minimum = $WOOCS->woocs_exchange_value(floatval($minimum));
}