복붙노트

[WORDPRESS] 국가 변경시 우주선 카트 운송 방법 업데이트

WORDPRESS

국가 변경시 우주선 카트 운송 방법 업데이트

해결법


  1. 1.다음을 사용하려고 할 수 있습니다.

    다음을 사용하려고 할 수 있습니다.

    add_action('wp_footer', 'cart_country_update_shipping_methods', 50);
    function cart_country_update_shipping_methods() {
        if ( ! is_cart() ) return; // On cart
        ?>
        <script type='text/javascript'>
            jQuery(function($){
                $(document.body).on('change', 'select[name="calc_shipping_country"]', function(){
                    $(this).submit();
                });
            });
        </script>
        <?php
    }
    

    코드는 Active Child Theme (또는 활성 테마)의 functions.php 파일입니다. 테스트하고 작동합니다.

    관련 : 배송 계산기 상태 필드 변경 트리거 업데이트 Woocommerce Cart

  2. from https://stackoverflow.com/questions/63307294/update-woocommerce-cart-shipping-methods-on-country-change by cc-by-sa and MIT license