在woocommerce中更新ajax后获取总价

时间:2017-01-21 19:28:03

标签: wordpress woocommerce hook-woocommerce woocommerce-rest-api

我试图在过滤器woocommerce_update_order_review_fragments中取价,但却无法理解它所在的位置

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;
}

1 个答案:

答案 0 :(得分:0)

管理以了解具体方法。需要查看通过ajax刷新每次购物车时更新的会话购物车。

enable/disable breakpoints