Hide estimated price at checkout
How to disable estimated prices and fees in local currency at checkout


Last updated
Was this helpful?
How to disable estimated prices and fees in local currency at checkout


Last updated
Was this helpful?
Was this helpful?
add_filter('yay_currency_checkout_converted_approximately', 'yay_currency_checkout_converted_approximately', 10, 2);
function yay_currency_checkout_converted_approximately( $show, $apply_currency ) {
return false;
}