Skip to content

Instantly share code, notes, and snippets.

@DumahX
Last active April 5, 2021 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DumahX/745852c03b4e9e30d5bbc97fb7ce5fe4 to your computer and use it in GitHub Desktop.
Save DumahX/745852c03b4e9e30d5bbc97fb7ce5fe4 to your computer and use it in GitHub Desktop.
<?php
// Copy the lines below this one into a plugin like Code Snippets (run everywhere type)
function mepr_change_lc_paypal( $args ) {
$args['lc'] = 'fr_CA';
return $args;
}
add_filter( 'mepr_paypal_std_payment_vars', 'mepr_change_lc_paypal', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment