WPML
add_filter( 'wcml_client_currency', 'the_callback_function', 10, 1 );
タイプ
filter
カテゴリー
多通貨機能
WooCommerce Multilingualバージョン
3.5

説明

フロントエンドでユーザーが設定した通貨をフィルターします。

フィルターで通貨を変更する場合は、ページを強制的にリロードすることを強くお勧めします。これにより、通貨表示の不整合を防ぐことができます。そうしないと、通貨の変更が遅すぎた場合に、アプリケーションの状態の一部がある通貨になり、残りが別の通貨になってしまう可能性があります。

引数

このフィルターに渡されるパラメーターはcurrencyの1つのみです。

$currency
(文字列) フロントエンドで使用される通貨コード(例:「USD」、「EUR」など)。

使用例

 /**
 * 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

すべての多通貨機能フック(24件) →