# 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>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.yaycommerce.com/yaycurrency/configurations/checkout-options/hide-estimated-price-at-checkout.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
