>백엔드 개발 >PHP 튜토리얼 >WooCommerce 제품 변형 드롭다운에 재고 상태를 표시하는 방법은 무엇입니까?

WooCommerce 제품 변형 드롭다운에 재고 상태를 표시하는 방법은 무엇입니까?

Barbara Streisand
Barbara Streisand원래의
2024-10-31 14:37:02951검색

How to Display Stock Status in WooCommerce Product Variation Dropdown?

WooCommerce 제품 변형 드롭다운에서 재고 상태를 표시하는 방법

질문:

어떻게 할 수 있나요? WooCommerce 제품 페이지의 드롭다운 목록에 각 제품 변형에 대한 재고 상태(재고 있음/품절)가 표시됩니까?

답변:

2021년 업데이트(제한 사항):

다음 코드는 하나의 드롭다운(하나의 속성)이 있는 가변 제품에만 작동합니다. 여러 속성과 드롭다운이 있는 제품의 경우 재고 상태가 잘못 표시될 수 있습니다.

한 개의 드롭다운 변형에 대한 수정된 코드:

<code class="php">// Function that checks stock status and adds text to the dropdown option
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)';
}

// Function that filters the dropdown options and adds stock status
add_filter('woocommerce_dropdown_variation_attribute_options_html', 'show_stock_status_in_dropdown', 10, 2);
function show_stock_status_in_dropdown($html, $args) {
    // Only for products with one variation attribute (one dropdown)
    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);
        $id = $args['id'] ? $args['id'] : sanitize_title($attribute);
        $class = $args['class'];
        $show_option_none = $args['show_option_none'] ? true : false;
        $show_option_none_text = $args['show_option_none'] ? $args['show_option_none'] : __('Choose an option', 'woocommerce');

        if (empty($options) && !empty($product) && !empty($attribute)) {
            $attributes = $product->get_variation_attributes();
            $options = $attributes[$attribute];
        }

        $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>';

        if (!empty($options)) {
            if ($product && taxonomy_exists($attribute)) {
                $terms = wc_get_product_terms($product->get_id(), $attribute, array('fields' => 'all'));

                foreach ($terms as $term) {
                    if (in_array($term->slug, $options)) {
                        $stock_status = get_stock_status_text($product, $name, $term->slug);
                        $html .= '<option value="' . esc_attr($term->slug) . '" ' . selected(sanitize_title($args['selected']), $term->slug, false) . '>' . esc_html(apply_filters('woocommerce_variation_option_name', $term->name) . $stock_status) . '</option>';
                    }
                }
            } else {
                foreach ($options as $option) {
                    $selected = sanitize_title($args['selected']) === $args['selected'] ? selected($args['selected'], sanitize_title($option), false) : selected($args['selected'], $option, false);
                    $stock_status = get_stock_status_text($product, $name, $option);
                    $html .= '<option value="' . esc_attr($option) . '"' . $selected . '>' . esc_html(apply_filters('woocommerce_variation_option_name', $option) . $stock_status) . '</option>';
                }
            }
        }
        $html .= '</select>';
    }

    return $html;
}</code>

참고:

  • function.php 파일이나 사용자 정의 플러그인에 이 코드를 추가하세요.
  • "속성"을 변형 속성의 실제 이름으로 바꾸세요.

제한사항:

  • 이 코드는 드롭다운 변형이 하나(하나의 속성)인 제품에만 작동합니다.
  • 여러 속성과 드롭다운이 있는 제품의 경우 재고현황이 잘못 표시될 수 있습니다.

위 내용은 WooCommerce 제품 변형 드롭다운에 재고 상태를 표시하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.