programing

일치하지 않는 변형 숨기기

goodsources 2023. 10. 18. 22:03
반응형

일치하지 않는 변형 숨기기

그래서 저는 현재 다양성이 많은 우커머스 매장에서 일하고 있습니다.

기본적으로 제가 원하는 것은 그 전에 선택한 변형을 바탕으로 새로고침하는 다음 변형입니다.

예를 들어, http://freelance.tstwebdesign.co.uk/platino/product/plain-platinum-court/, 에 접속한 경우, "Width"에서 선택한 항목을 선택하고, "Depth"는 해당 너비와 일치하는 사용 가능한 깊이만 표시합니다.

이것이 어떻게 행해지는가?

많지 않은 변형에 대한 기본 기능입니다.다양한 변형의 경우 기능을 사용할 수 있습니다.

    // Woo Commerce – Make Variations only appear when available
function custom_wc_ajax_variation_threshold( $qty, $product ) {
return 500;
}

add_filter( ‘woocommerce_ajax_variation_threshold’, ‘custom_wc_ajax_variation_threshold’, 10, 2 );

언급URL : https://stackoverflow.com/questions/37186931/hide-variations-that-dont-match

반응형