[WORDPRESS] 국가 변경시 우주선 카트 운송 방법 업데이트
WORDPRESS국가 변경시 우주선 카트 운송 방법 업데이트
해결법
-
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
from https://stackoverflow.com/questions/63307294/update-woocommerce-cart-shipping-methods-on-country-change by cc-by-sa and MIT license
'WORDPRESS' 카테고리의 다른 글
[WORDPRESS] 게시물이 생성 될 때 WooCommerce 제품을 만듭니다 (0) | 2020.11.21 |
---|---|
[WORDPRESS] wp_insert_post ()가있는 새 페이지 만들기 (0) | 2020.11.21 |
[WORDPRESS] WordPress를 TCP를 통해 데이터베이스에 연결하십시오 (0) | 2020.11.21 |
[WORDPRESS] 프로그래밍 방식으로 WooCommerce에서 여러 쿠폰을 만듭니다 (0) | 2020.11.21 |
[WORDPRESS] Woocommerce_get_price_html 후크에 가격을 따르는 다국어 텍스트를 추가하십시오 (0) | 2020.11.21 |