you can check it
add_filter( ‘wcml_load_multi_currency_in_ajax’, ‘claue_load_multi_currency_in_ajax’, 10, 1 );
if (!function_exists(‘claue_load_multi_currency_in_ajax’)){
function claue_load_multi_currency_in_ajax( $load ) {
if (is_ajax()) {
$load = true;
return $load;
}
}
}
i just added – if (is_ajax()) and it fixed the issue.
<hr />
BUT i have another issue
when i am in Dollar currency https://www.rinatilakel.com/product/t-shirt-with-sleeve/
in product page it shows me it in another currency.
PLEASE HELP TO FIX IT