Created
December 31, 2016 18:41
-
-
Save rafa-acioly/cc69abc8e29cae68a97ae5524b518b95 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function change_currency_symbol() | |
{ | |
global $woocommerce; | |
return preg_replace('/[$]/', 'R$', $woocommerce->cart->get_cart_total()); | |
} | |
apply_filter('woocommerce_cart_total', 'change_currency_symbol'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment