0

내가 필터 woocommerce_update_order_review_fragments에서 가격을하려고하지만 방법을 찾아 관리woocommerce

add_filter('woocommerce_update_order_review_fragments', 'price_bottom_checkout'); 
function price_bottom_checkout($arr) { 
    $price = ? // how to get it over here?  
    $price_txt = '<span class="total-pay">'.$price.'</span>'; 
    $arr['.total-pay'] = $price; 
    return $arr; 
} 

답변

0

을 상주 이해하지 못하는 오전에 아약스 업데이트 후 총 가격을 가져옵니다. ajax를 통해 모든 카트를 새로 고침 할 때 업데이트되는 세션 카트를 보려면 필요합니다.

add_filter('woocommerce_update_order_review_fragments', 'price_bottom_checkout'); 
function price_bottom_checkout($arr) { 
    global $woocommerce; 
    $the_total = ''; 
    foreach ($woocommerce->cart->cart_contents as $cart_item) { 
     $the_total = $cart_item['line_total']; 
     break; 
    } 
    $price_txt = '<span class="total-pay">'.wc_price($the_total).'</span>'; 
    $arr['.total-pay'] = $price_txt; 
    return $arr; 
}