# Hide checkout notice payment method

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

At the checkout page, if you choose currency different from the default, you will see a notice like this:

<figure><img src="https://2217518750-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-M_yR1oHovFi42XBPZIi%2Fuploads%2FpEbfl7jrR7lHrkU4uTCk%2FScreenshot_119.png?alt=media&#x26;token=d8c0d9cc-9bf4-4122-a6ee-b51cca2429c4" alt=""><figcaption></figcaption></figure>

If you don't want to show this notice at checkout, you can hide them using custom coding.

To hide this notice, 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_notice_payment_methods', 'yay_currency_checkout_notice_payment_methods', 10, 2);
function yay_currency_checkout_notice_payment_methods( $show, $apply_currency ) {
    return false;
}
```

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

<figure><img src="https://2217518750-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-M_yR1oHovFi42XBPZIi%2Fuploads%2FYsas1KtDh4J1l41NeQOE%2FScreenshot_120.png?alt=media&#x26;token=3abbce5c-e0d8-4c05-90cf-a58867a1f8b5" alt=""><figcaption></figcaption></figure>
