WPML
add_filter( 'wcml_client_currency', 'the_callback_function', 10, 1 );
Tipo
filter
Categoria
Recurso multimoeda
Versão do WooCommerce Multilingual
3.5

Descrição

Filtre a moeda definida pelo usuário no front-end.

Se a moeda for alterada no filtro, recomendamos fortemente que você force a página a recarregar. Isso evita inconsistências na forma como as moedas são exibidas. Caso contrário, se a moeda for alterada tarde demais, parte do estado do aplicativo poderia estar em uma moeda, e o restante em outra.

Argumentos

Há apenas um parâmetro passado para este filtro: currency.

$currency
(string) O código da moeda usada no front-end, por exemplo, “USD”, “EUR”, etc.

Exemplo de uso

Exemplo
 /**
 * Add this code to the functions.php file of your theme.
 */
add_filter( 'wcml_client_currency', 'modify_client_currency', 10, 1 );
 
function modify_client_currency( $currency ) {
    return 'USD'; 
} 

wcml_custom_prices_fields_labels, wcml_is_cache_enabled_for_switching_currency, wcml_geolocation_get_user_country, wcml_user_store_strategy, wcml_rounded_price, wcml_currencies_without_cents, wcml_product_custom_prices, wcml_custom_prices_strings, wcml_switch_currency, wcml_custom_prices_fields

Todos os 24 hooks de Recurso multimoeda →