A
A
Artemy Zheman2018-04-12 17:07:42
WordPress
Artemy Zheman, 2018-04-12 17:07:42

How to mass multiply all prices in a Woocommerce site?

Hello!
There is a website with 4500 products, all prices are in euros, you need to make them in rubles
. Actually, the question is, how can you massively multiply all prices by the current euro exchange rate?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
L
Leonid, 2018-04-12
@artyom_jeman

function return_custom_price($price, $product) {
    $price = $price * 70; // где 70 - ваш курс
    return $price;
}
add_filter('woocommerce_get_price', 'return_custom_price', 10, 2);

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question