답변:
예, woocommerce_get_price
필터 후크를 사용하여 사용자 역할에 따라 값을 필터링하고 그에 따라 가격을 반환 할 수 있습니다.
add_filter('woocommerce_get_price', 'custom_price_WPA111772', 10, 2);
/**
* custom_price_WPA111772
*
* filter the price based on category and user role
* @param $price
* @param $product
* @return
*/
function custom_price_WPA111772($price, $product) {
if (!is_user_logged_in()) return $price;
//check if the product is in a category you want, let say shirts
if( has_term( 'shirts', 'product_cat' ,$product->ID) ) {
//check if the user has a role of dealer using a helper function, see bellow
if (has_role_WPA111772('dealer')){
//give user 10% of
$price = $price * 0.9;
}
}
return $price;
}
/**
* has_role_WPA111772
*
* function to check if a user has a specific role
*
* @param string $role role to check against
* @param int $user_id user id
* @return boolean
*/
function has_role_WPA111772($role = '',$user_id = null){
if ( is_numeric( $user_id ) )
$user = get_user_by( 'id',$user_id );
else
$user = wp_get_current_user();
if ( empty( $user ) )
return false;
return in_array( $role, (array) $user->roles );
}
WooCommerce에 대한 고객 별 가격을 시험해 볼 수 있습니다 . 이 플러그인을 사용하면 등록 된 사용자에 대해 다른 가격을 추가 할 수 있습니다.
현재 플러그인은 초기 단계이지만 제품 카테고리에 따른 가격과 같은 추가 기능을 지원하도록 업데이트 될 예정입니다.