WPML
add_filter( 'wcml_multi_currency_ajax_actions', 'the_callback_function', 10, 1 );
ประเภท
filter
เวอร์ชันของ WooCommerce Multilingual
3.1

คำอธิบาย

เพิ่มหรือลบการดำเนินการ AJAX ที่ต้องการฟิลเตอร์หลายสกุลเงินของเรา

อาร์กิวเมนต์

มีเพียงพารามิเตอร์เดียวที่ส่งไปยังฟิลเตอร์นี้: ajax_actions
$ajax_actions
(array) อาร์เรย์ที่ประกอบด้วยการดำเนินการ AJAX

ตัวอย่างการใช้งาน

ตัวอย่าง
/**
 * Add this code to the functions.php file of your theme.
 */
add_filter( 'wcml_multi_currency_ajax_actions', 'add_action_to_multi_currency_ajax', 10, 1 );

function add_action_to_multi_currency_ajax( $ajax_actions ) {

    $ajax_actions[] = 'ux_quickview'; // Add a AJAX action to the array
    return $ajax_actions;

}

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 รายการ →