- availability:
-
WooCommerce Multilingual Version: 3.5
- description:
-
Run your custom functions right after the client currency for the front-end is set.
- type:
- action
- category:
- Multi-currency Feature
- parameters:
-
add_action( 'wcml_set_client_currency', 'the_callback_function', 10, 1 );
There is one parameter being passed to this action: currency.
- $currency
- (string) The currency code is being set in the front-end, e.g: “USD”, “EUR”, etc.
- hook example usage:
-
Example
1234add_action(
'wcml_set_client_currency'
,
'my_custom_action'
, 10, 1 );
function
my_custom_action(
$new_currency
) {
// my custom action
}