2016-12-19 8 views
1

woocommerce 배송에 문제가 있습니다. 다음은 장바구니 페이지에 표시되는 오류입니다.치명적인 오류 get_label() woocommerce 배송

Fatal error: Call to a member function get_label() on null in public_html/wp-content/plugins/woocommerce/includes/wc-cart-functions.php on line 327 

스크린 샷도 첨부되어 있습니다. enter image description here

어떤 도움이 높게 평가 될 것이다

public function get_label() { 
     return apply_filters('woocommerce_shipping_rate_label', $this->label); 
    } 

화장실 카트-functions.php

function wc_cart_totals_shipping_method_label($method) { 
    $label = $method->get_label(); 

    if ($method->cost > 0) { 
     if (WC()->cart->tax_display_cart == 'excl') { 
      $label .= ': ' . wc_price($method->cost); 
      if ($method->get_shipping_tax() > 0 && WC()->cart->prices_include_tax) { 
       $label .= ' <small class="tax_label">' . WC()->countries->ex_tax_or_vat() . '</small>'; 
      } 
     } else { 
      $label .= ': ' . wc_price($method->cost + $method->get_shipping_tax()); 
      if ($method->get_shipping_tax() > 0 && ! WC()->cart->prices_include_tax) { 
       $label .= ' <small class="tax_label">' . WC()->countries->inc_tax_or_vat() . '</small>'; 
      } 
     } 
    } 

    return apply_filters('woocommerce_cart_shipping_method_full_label', $label, $method); 
} 

get_label().

+0

문제의 원인이되는 코드 부분을 붙여 넣을 수 있습니까? line 320 ~ line 335 –

+0

질문이 업데이 트되었습니다 – Kevin

+0

검색 woocommerce 파일 및 get_label()의 시체를 찾습니다 –

답변

0

get_label() 기능에서 apply_filters 대신 add_filter을 사용하십시오. 문제를 해결할 것입니다.