我需要在子主题中从functions.php重新加载/刷新页面吗?

时间:2019-06-01 01:16:41

标签: javascript php jquery wordpress hook-woocommerce

有人知道我需要在下面添加我的脚本来重新加载。刷新我的购物车页面(https://mysite.com.au/cart/)吗?

//Calculate shipping after item qty has changed in cart
add_action( 'wp_footer', 'cart_refresh_update_qty');

function cart_refresh_update_qty() {
    if (is_cart()) :
    ?>
    <script type="text/javascript">
    jQuery( function($){
    $(document.body).on('click', 'input[name="update_cart"]', function(){
        //alert('Cart Qty Changed, Shipping total will be updated - Update Button.');
        jQuery("[name='calc_shipping']").trigger("click");
    });
    });
    </script>
   <script type="text/javascript">
    jQuery( function($){
    $(".remove").on('click', function(){
        //alert('Cart Qty Changed, Shipping total will be updated - Remove x.');
        jQuery("[name='calc_shipping']").trigger("click");
    });
    });
    </script>
    <?php
    endif;
}

0 个答案:

没有答案