To change a currency symbol in WooCommerce, all you need is a code snippet. In the following example we're going to change the symbol for Canadian Dollars from "$" to "CA$": add_filter('woocommerce_currency_symbol', 'snippetpress_change_woo_currency_symbol', 10, 2); function snippetpress_change_woo_currency_symbol( $symbol, $currency ) { switch( $currency ) { case … [Read more...] about WooCommerce – Change a Currency Symbol
Snippets
WooCommerce Stripe – Modify Payment Method Icon
If you're using the official Stripe Plugin for WooCommerce, you may have noticed that each of the payment methods you enable has an icon next to it in the checkout. Occasionally, you might want to display a different icon for a payment method. For example, the Alipay logo that is included as default in the plugin is out of date, so you may want to display the new logo … [Read more...] about WooCommerce Stripe – Modify Payment Method Icon
Add a Custom Currency to WooComerce
WooCommerce supports hundreds of currencies, but there may be a situation when you need to add your own. It's really simple to do, and just requires a code snippet. Let's say for example you want to add Bitcoin to WooCommerce. The currency code for Bitcoin is "XBT" and its symbol is "฿" add_filter( 'woocommerce_currencies', 'snippetpress_add_currency' ); function … [Read more...] about Add a Custom Currency to WooComerce
Rename a Country in WooCommerce
If you would like to rename a country in WooCommerce, it's as simple as adding a code snippet to your site. The following example changes "Ireland" to "Republic of Ireland": add_filter( 'woocommerce_countries', 'snippetpress_rename_countries' ); function snippetpress_rename_countries( $countries ) { $countries['IE'] = 'Republic of Ireland'; return $countries; } The … [Read more...] about Rename a Country in WooCommerce
How to Modify Text in a WordPress Plugin or Theme Without Another Plugin
We've all been there, you've found the perfect theme or plugin for your site, but the wording on that button just isn't right. Or maybe you need to change the word Cart to Basket in WooCommerce. Whatever it is, you've probably come across plugins that will change the text for you, but what if you want to do it without having to install another plugin? One thing's for certain … [Read more...] about How to Modify Text in a WordPress Plugin or Theme Without Another Plugin