YayCurrency Documentation
  • YayCurrency Documentation
  • Getting Started
    • Introduction
    • System Requirements
    • How to Install
    • Enter License key
    • How To Update YayCurrency
    • Uninstall and Delete
  • Main Features
  • Configurations
    • Manage Currency
    • Custom Rounding
    • Checkout Options
      • Hide estimated price at checkout
      • Hide checkout notice payment method
      • Force payment by customer country
      • Force Currency for Specific Payment Methods
    • Display Options
      • Use params on URL
      • Add A Few Parameters to Display Currency Switcher
    • Advanced Settings
      • Apply multiple currencies to Google Crawlers (or Bots)
      • Fixed Price for Each Currency Option for Bundle/Composite Product
    • Analytics
    • Order Info
    • Developer zone
      • Available YayCurrency Hooks
      • Available YayCurrency Shortcodes
  • Menu Option
  • Widget Option
  • Compatibility
    • Cache plugins
    • Dokan
    • YITH Points and Rewards
    • Name Your Price
    • Polylang
    • WPML
    • WooCommerce Subscriptions
    • Wholesale Pro by Barn2
    • WooCommerce Product Bundles
    • LearnPress
    • Lottery for WooCommerce
    • FunnelKit Automations
    • WordPress Tour & Travel Booking
    • B2B Market by MarketPress
    • Tiered Pricing Table for WooCommerce
    • Bookings Appointments for WooCommerce
    • Advanced Product Fields Extended
  • Why Upgrade?
  • OTHER LINKS
    • FAQs
    • Common Issues
    • Troubleshooting
      • How to pay without PayPal
    • Changelog
    • Support
Powered by GitBook
On this page

Was this helpful?

  1. Configurations
  2. Checkout Options

Hide estimated price at checkout

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

PreviousCheckout OptionsNextHide checkout notice payment method

Last updated 1 year ago

Was this helpful?

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

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.

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

It is recommended to add it tofunctions.php of child theme so that it will be preserved when you update the theme.

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.

To hide the approximation, you can add the following code to or to the file functions.php of your store theme.

Code Snippets