WPML
wcml_user_store_strategy
タイプ
filter
カテゴリー
多通貨機能
WooCommerce Multilingualバージョン
4.11.0

説明

ストレージ戦略を上書きできるようにします。デフォルトのストレージはwc-sessionで、現在のところ唯一の代替手段はcookieです。

引数

‘wc-session’
(文字列) ストレージ戦略
$key
(文字列) ストレージを操作するキー

使用例

// Use Cookie instead of WCSession
add_filter( 'wcml_user_store_strategy', function ( $strategy, $key ) {
	return 'cookie';
}, 10, 2 );

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

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