WPML
add_filter( 'wcml_is_variable_product', 'the_callback_function', 10, 2 );
ประเภท
filter
หมวดหมู่
เบ็ดเตล็ด
เวอร์ชันของ WooCommerce Multilingual
3.8

คำอธิบาย

เพิ่มฟิลเตอร์เพื่อตรวจสอบว่าสินค้าเป็นแบบมีตัวเลือกหรือไม่ สิ่งนี้มีประโยชน์สำหรับส่วนขยายของ WooCommerce ที่มีประเภทสินค้าแบบมีตัวเลือกเป็นของตนเอง

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

มีพารามิเตอร์สองตัวที่ส่งไปยังฟิลเตอร์นี้:
$is_variable
(bool) สินค้าเป็นแบบมีตัวเลือกหรือไม่
$product_id
(integer) ID ของสินค้า

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

ตัวอย่าง
/**
 * This example is extracted from the Adventure Tours compatibility class in the WCML code. 
 */

add_filter( 'wcml_is_variable_product', 'is_variable_tour', 10, 2 );

function is_variable_tour( $is_variable, $product_id ){
    $var_tour_meta = get_post_meta( $product_id, '_variable_tour', true );

    if( $is_variable && $var_tour_meta == 'yes' ){
        $is_variable = true;
    }elseif( $var_tour_meta == 'no' ){
        $is_variable = false;
    }

    return $is_variable;
}

wcml_new_order_admin_email_language, translate_shipping_methods_in_package, wcml_gui_additional_box_html, wcml_current_gateway_language, wcml_variation_term_taxonomy_ids, wcml_is_attributes_page, wcml_gui_additional_box_data, wcml_after_load_lock_fields_js, wcml_wc_installed_pages, wcml_not_display_single_fields_to_translate

ฮุก เบ็ดเตล็ด ทั้งหมด 12 รายการ →