1. Home
  2. 네이버페이(NPay)
  3. 플러그인 API
  4. mnp_before_checkout_cart, mnp_after_checkout_cart

mnp_before_checkout_cart, mnp_after_checkout_cart

1. 설명

  • 장바구니 화면에서 네이버페이 구매버튼 클릭 시 호출됩니다.
  • 장바구니 아이템에 대한 검증 및 추가 처리가 필요한 경우 이용할 수 있습니다.

 

2. 사용방법

add_action( 'mnp_before_checkout_cart', 'my_mnp_before_checkout_cart');
add_action( 'mnp_after_checkout_cart', 'my_mnp_after_checkout_cart');

 

3. 예제

add_action( 'mnp_before_checkout_cart', 'my_mnp_before_checkout_cart' );

function my_mnp_before_checkout_cart() {
    $cart_items = WC()->cart->get_cart();
    /** Do something.... */
}

add_action( 'mnp_after_checkout_cart', 'my_mnp_after_checkout_cart' );

function my_mnp_after_checkout_cart() {
    $cart_items = WC()->cart->get_cart();
    /** Do something.... */
}

 

4. 변경내역

  • Ver 1.1.5에 추가됨.
Was this article helpful to you? Yes No