Last active
August 29, 2015 14:09
-
-
Save thierrypigot/d59a802f8fa85afc2741 to your computer and use it in GitHub Desktop.
Admin in FR, front in IT
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 | |
add_filter('locale', 'tp_setLocale'); | |
function tp_setLocale($locale) { | |
if ( !is_admin() && isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'woocommerce_update_order_review' ) { | |
return 'it_IT'; | |
} | |
return $locale; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment