복붙노트

[WORDPRESS] WooCommerce 변수 제품 선택의 변화 재고 상태 이름?

WORDPRESS

WooCommerce 변수 제품 선택의 변화 재고 상태 이름?

해결법


  1. 1.당신은 단순히 않는 str_replace () PHP 함수이 방법을 사용하여 수행 할 수 있습니다

    당신은 단순히 않는 str_replace () PHP 함수이 방법을 사용하여 수행 할 수 있습니다

    $stock_status = $variation_obj->get_stock_status();
    
    // Here we change both $stock_status names to human readable strings:
    $stock_status = str_replace( array('instock','outofstock'), array('In Stock','Out of Stock'), $stock_status );
    
    $stock_qty = $variation_obj->get_stock_quantity();
    
    if( $stock_qty>0 )
        return $term_name .= ' - ' . $stock_status . ' ('.$stock_qty.')';
    else
        return $term_name .= ' - ' . $stock_status;
    
    }
    
  2. from https://stackoverflow.com/questions/45190106/change-stock-status-names-in-woocommerce-variable-products-selector by cc-by-sa and MIT license