It did not help, I have a filter:
add_filter('woocommerce_product_get_price', 'custom_price', 99, 2 );
function custom_price ($price) {
$int1 = floatval($price);
$kurs=get_option('kurs');
if (($kurs!='') && ($kurs!=0) ) {
return $int1*$kurs;
}
else return $int1;
}
this works with a regular price, but if the quantity is in the Tiered Price range, then the amount is multiplied by the rate again.
how can i track when table price and where regular price is used?
Thank you, it works, but the subtotal and total are doubled, how can I check that the Tiered Pricing Table is used in my condition?