[WORDPRESS] WooCommerce - 지불 게이트웨이 숨기기
WORDPRESSWooCommerce - 지불 게이트웨이 숨기기
해결법
-
1.문제가 지속되면 이것이 당신을 위해 일할 것이기를 바랍니다. 알려주세요.
문제가 지속되면 이것이 당신을 위해 일할 것이기를 바랍니다. 알려주세요.
function woo_disable_cod( $available_gateways ) { $current_user = wp_get_current_user(); //check whether the avaiable payment gateways have Cash on delivery and user is not logged in or he is a user with role customer if ( isset($available_gateways['cod']) && ((current_user_can('customer') && $current_user->user_firstname == 'Peter' ) || ! is_user_logged_in() ) ) { //remove the paypal payment gateway from the available gateways. unset($available_gateways['paypal']); } return $available_gateways; } add_filter('woocommerce_available_payment_gateways', 'woo_disable_cod', 99, 1);
from https://stackoverflow.com/questions/33605120/woocommerce-hide-payment-gateway by cc-by-sa and MIT license
'WORDPRESS' 카테고리의 다른 글
[WORDPRESS] WooCommerce의 특정 제품에 대한 지리적 위치에 근거한 사용자 정의 리디렉션 (0) | 2020.11.22 |
---|---|
[WORDPRESS] 's'=> $ Term, WordPress / PHP의 post_title에 기초하여 게시물을 당기지 않아야합니다. (0) | 2020.11.21 |
[WORDPRESS] WordPress : Ajax 페이지 매김 템플릿 내에 추가 될 때 사용자 버튼을 따르지 않습니까? (0) | 2020.11.21 |
[WORDPRESS] 단일 제품 페이지에서 제품 변형 메시지 사용자 정의 (0) | 2020.11.21 |
[WORDPRESS] 데이터베이스 WordPress 오류를 선택할 수 없습니다 (0) | 2020.11.21 |