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

説明

AJAXリクエストによってフロントエンドのクライアント通貨が切り替えられた直後に、カスタム関数を実行します。

引数

このアクションには、new_currencyという1つのパラメーターが渡されます。
$new_currency
(文字列) 切り替え先の新規通貨コード(例:「USD」、「EUR」など)。

使用例

add_action( 'wcml_switch_currency', 'my_custom_action', 10, 1 );
function my_custom_action( $new_currency ) {
	// my custom action
}

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_custom_prices_fields, wcml_multi_currency_ajax_actions

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