문제:
WooCommerce 제품에 제품 변형을 표시할 때 페이지 드롭다운에서는 각 변형의 재고 상태(예: 재고 있음/품절)를 쉽게 확인할 수 없습니다.
해결책:
참고: 이 솔루션은 드롭다운 속성이 하나만 있는 가변 제품에 적합합니다.
wc_dropdown_variation_attribute_options 함수 수정:
<code class="php">add_filter( 'woocommerce_dropdown_variation_attribute_options_html', 'show_stock_status_in_dropdown', 10, 2); function show_stock_status_in_dropdown( $html, $args ) { // Ensure there's only one variation attribute if( sizeof($args['product']->get_variation_attributes()) == 1 ) { $options = $args['options']; $product = $args['product']; $attribute = $args['attribute']; $name = $args['name'] ? $args['name'] : 'attribute_' . sanitize_title( $attribute ); $show_option_none = $args['show_option_none'] ? true : false; if ( ! empty( $options ) ) { $html = '<select id="' . esc_attr( $id ) . '" class="' . esc_attr( $class ) . '" name="' . esc_attr( $name ) . '" data-attribute_name="attribute_' . esc_attr( sanitize_title( $attribute ) ) . '" data-show_option_none="' . ( $show_option_none ? 'yes' : 'no' ) . '">'; $html .= '<option value="">' . esc_html( $show_option_none_text ) . '</option>'; foreach ( $options as $option ) { $stock_status = get_stock_status_text( $product, $name, $option ); $html .= '<option value="' . esc_attr( $option ) . '" ' . selected( sanitize_title( $args['selected'] ), $option, false ) . '>' . esc_html( apply_filters( 'woocommerce_variation_option_name', $option ) . $stock_status ) . '</option>'; } $html .= '</select>'; } } return $html; }</code>
<code class="php">function get_stock_status_text( $product, $name, $term_slug ) { foreach ( $product->get_available_variations() as $variation ){ if($variation['attributes'][$name] == $term_slug ) { $stock = $variation['is_in_stock']; break; } } return $stock == 1 ? ' - (In Stock)' : ' - (Out of Stock)'; }</code>
사용법:
위 코드 조각을 테마의 function.php 파일 또는 플러그인 파일입니다.
제한 사항:
위 내용은 단일 속성 제품의 WooCommerce 변형 드롭다운에 재고 상태를 표시하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!