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개 →