WooCommerce 4에 사용자 정의 재고 상태 기능을 추가하는 방법은 무엇입니까?

Susan Sarandon
풀어 주다: 2024-11-02 19:11:02
원래의
408명이 탐색했습니다.

How to Add Custom Stock Status Functionality to WooCommerce 4 ?

WooCommerce 4에 사용자 정의 재고 상태 기능을 추가하는 방법

소개

WooCommerce 제품에 사용자 정의 재고 상태를 추가하면 가용성에 대한 자세한 정보를 제공할 수 있습니다. 이는 고객의 쇼핑 경험을 개선하고 혼란을 줄이는 데 도움이 될 수 있습니다.

맞춤형 재고 상태 옵션

맞춤형 재고 상태 기능을 사용하려면 다음 단계를 따르세요.

  1. 사용자 정의 재고 상태 추가:

    <code class="php">function filter_woocommerce_product_stock_status_options( $status ) {
        // Add new statuses
        $status['pre_order'] = __( 'Pre order', 'woocommerce' );
        $status['contact_us'] = __( 'Contact us', 'woocommerce' );
    
        return $status;
    }
    add_filter( 'woocommerce_product_stock_status_options', 'filter_woocommerce_product_stock_status_options', 10, 1 );</code>
    로그인 후 복사
  2. 가용성 텍스트 및 클래스 업데이트:

    <code class="php">function filter_woocommerce_get_availability_text( $availability, $product ) {
        // Get stock status
        switch( $product->get_stock_status() ) {
            case 'pre_order':
                $availability = __( 'Pre order', 'woocommerce' );
            break;
            case 'contact_us':
                $availability = __( 'Contact us', 'woocommerce' );
            break;
        }
    
        return $availability; 
    }
    add_filter( 'woocommerce_get_availability_text', 'filter_woocommerce_get_availability_text', 10, 2 );
    
    function filter_woocommerce_get_availability_class( $class, $product ) {
        // Get stock status
        switch( $product->get_stock_status() ) {
            case 'pre_order':
                $class = 'pre-order';
            break;
            case 'contact_us':
                $class = 'contact-us';
            break;
        }
    
        return $class;
    }
    add_filter( 'woocommerce_get_availability_class', 'filter_woocommerce_get_availability_class', 10, 2 );</code>
    로그인 후 복사
  3. 관리 제품 목록에 사용자 정의 상태 표시:

    <code class="php">function filter_woocommerce_admin_stock_html( $stock_html, $product ) {
        // Simple
        if ( $product->is_type( 'simple' ) ) {
            // Get stock status
            $product_stock_status = $product->get_stock_status();
        // Variable
        } elseif ( $product->is_type( 'variable' ) ) {
            foreach( $product->get_visible_children() as $variation_id ) {
                // Get product
                $variation = wc_get_product( $variation_id );
    
                // Get stock status
                $product_stock_status = $variation->get_stock_status();
            }
        }
    
        // Stock status
        switch( $product_stock_status ) {
            case 'pre_order':
                $stock_html = '<mark class=&quot;pre-order&quot; style=&quot;background:transparent none;color:#33ccff;font-weight:700;line-height:1;&quot;>' . __( 'Pre order', 'woocommerce' ) . '</mark>';
            break;
            case 'contact_us':
                $stock_html = '<mark class=&quot;contact-us&quot; style=&quot;background:transparent none;color:#cc33ff;font-weight:700;line-height:1;&quot;>' . __( 'Contact us', 'woocommerce' ) . '</mark>';
            break;
        }
    
        return $stock_html;
    }
    add_filter( 'woocommerce_admin_stock_html', 'filter_woocommerce_admin_stock_html', 10, 2 );</code>
    로그인 후 복사
  4. 후크에서 사용자 정의 상태 사용:

    옵션 1: 전역 $product 사용

    <code class="php">function woocommerce_my_callback() {
        // Get the global product object
        global $product;
    
        // Is a WC product
        if ( is_a( $product, 'WC_Product' ) ) {
            // Get stock status
            $product_stock_status = $product->get_stock_status();
    
            // Use this line during testing, delete afterwards!
            echo '<p style=&quot;color:red;font-size:20px;&quot;>DEBUG INFORMATION = ' . $product_stock_status . '</p>';
    
            // Compare
            if ( $product_stock_status == 'My custom stock status' ) {
                // Etc..
            }
        }
    }
    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_my_callback', 10 );
    add_action( 'woocommerce_single_product_summary', 'woocommerce_my_callback', 10 );</code>
    로그인 후 복사

    옵션 2: 콜백에 $product 전달

    <code class="php">function filter_woocommerce_get_price_html( $price, $product ) {
        // Is a WC product
        if ( is_a( $product, 'WC_Product' ) ) {
            // Get stock status
            $product_stock_status = $product->get_stock_status();
    
            // Use this line during testing, delete afterwards!
            echo '<p style=&quot;color:red;font-size:20px;&quot;>DEBUG INFORMATION = ' . $product_stock_status . '</p>';
    
            // Compare
            if ( $product_stock_status == 'My custom stock status' ) {
                // Etc..
                // $price .= ' my text';
            }
        }
    
        return $price;
    }
    add_filter( 'woocommerce_get_price_html', 'filter_woocommerce_get_price_html', 10, 2 );</code>
    로그인 후 복사

결론

WooCommerce에 사용자 정의 재고 상태를 추가하면 고객에게 더 큰 유연성과 정보를 제공할 수 있습니다. 다음 단계를 따르면 WooCommerce의 기본 기능을 쉽게 확장하고 사용자의 쇼핑 경험을 향상시킬 수 있습니다.

위 내용은 WooCommerce 4에 사용자 정의 재고 상태 기능을 추가하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!