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
어떤 도움이 높게 평가 될 것이다
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().
문제의 원인이되는 코드 부분을 붙여 넣을 수 있습니까? line 320 ~ line 335 –
질문이 업데이 트되었습니다 – Kevin
검색 woocommerce 파일 및 get_label()의 시체를 찾습니다 –