[WORDPRESS] woocommerce에서 돈을 일정 금액 이상 주문 배달에 숨기기 현금
WORDPRESSwoocommerce에서 돈을 일정 금액 이상 주문 배달에 숨기기 현금
해결법
-
1.당신은 편집 woocommerce 게이트웨이에 woocommerce_available_payment_gateways 후크를 사용할 수 있습니다.
당신은 편집 woocommerce 게이트웨이에 woocommerce_available_payment_gateways 후크를 사용할 수 있습니다.
add_filter( 'woocommerce_available_payment_gateways' , 'change_payment_gateway', 20, 1); /** * remove cod gateway if cart total > 100 * @param $gateways * @return mixed */ function change_payment_gateway( $gateways ){ // Compare cart subtotal (without shipment fees) if( WC()->cart->subtotal > 100 ){ // then unset the 'cod' key (cod is the unique id of COD Gateway) unset( $gateways['cod'] ); } return $gateways; }
from https://stackoverflow.com/questions/27094892/hide-cash-on-delievery-for-orders-over-certain-amount-of-money-in-woocommerce by cc-by-sa and MIT license
'WORDPRESS' 카테고리의 다른 글
[WORDPRESS] 워드 프레스 페이지 매김 - 다른 페이지로 이동할 수 없습니다 (0) | 2020.11.18 |
---|---|
[WORDPRESS] 워드 프레스에 대한 사용자 정의 페이지를 생성하고 여기에 콘텐츠를 추가 (0) | 2020.11.18 |
[WORDPRESS] 숍 페이지의 제품을 사용자 정의 제휴 사이트로 바로 이동 (0) | 2020.11.18 |
[WORDPRESS] 변수에 the_field ()의 값을 할당 할 수 없습니다 (0) | 2020.11.18 |
[WORDPRESS] WooCommerce 배송 방법에 다른 사용자 정의 레이블을 추가하십시오 (0) | 2020.11.18 |