> For the complete documentation index, see [llms.txt](https://docs.yaycommerce.com/yaycurrency/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.yaycommerce.com/yaycurrency/configurations/checkout-options/hide-estimated-price-at-checkout.md).

# Hide estimated price at checkout

When you disable 'Checkout in different currency', the order will be placed in your store's default currency.&#x20;

At the checkout page, you will see the converted product price in the local currency displayed next to the checkout currency as an approximation.

For instance, your default currency is USD and the customer is viewing EUR on product page. This approximate price is meant to help your customers get an idea of how much it costs in their local currency.

<figure><img src="/files/B9MOYe51dVVX5t2NafgO" alt=""><figcaption></figcaption></figure>

If you don't want to show these estimated prices and fees at checkout, you can hide them using custom coding.

To hide the approximation, you can add the following code to [Code Snippets](https://wordpress.org/plugins/code-snippets/) or to the file `functions.php` of your store theme.&#x20;

{% hint style="info" %}
It is recommended to add it to`functions.php` of child theme so that it will be preserved when you update the theme.
{% endhint %}

```
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;
}
```

Once added, you will see it disappear at the checkout.

<figure><img src="/files/Yoz4ckAYWdAWBU0ClD18" alt=""><figcaption></figcaption></figure>
