WPML
add_filter( 'wcml_client_currency', 'the_callback_function', 10, 1 );
סוג
filter
גרסת WooCommerce Multilingual
3.5

תיאור

סנן את המטבע שהוגדר על ידי המשתמש בצד הלקוח.

אם המטבע משתנה בפילטר, אנו ממליצים בחום לכפות טעינה מחדש של הדף. הדבר מונע חוסר עקביות באופן שבו המטבעות מוצגים. אחרת, אם המטבע משתנה מאוחר מדי, חלק ממצב היישום עלול להיות במטבע אחד, והשאר במטבע אחר.

ארגומנטים

מועבר רק פרמטר אחד לפילטר זה: currency.

$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 ההוקים בקטגוריה תכונת ריבוי מטבעות →