반응형
WooCommerce가 프로그래밍 방식으로 주문을 작성하고 지불로 리디렉션합니다.
WooCommerce에서는 주문하기 위해 프로그래밍 방식으로 주문을 작성하는 솔루션을 찾고 있습니다(우리 사이트에는 몇 가지 필드가 있는 홈페이지가 1개만 있습니다).
체크박스를 켜고 상품을 추가한 후 주문을 작성하여 결제방법으로 리다이렉트하고 싶습니다.
이 답변으로 주문 작성은 거의 완료되어 있습니다만, 어떻게 지불을 시작할 수 있습니까?워드프레스(Woocommerce 확장자) - 프로그램적으로 새 순서 만들기
이것으로 끝입니다.
if (isset($_POST['isOrder']) && $_POST['isOrder'] == 1) {
$address = array(
'first_name' => $_POST['notes']['domain'],
'last_name' => '',
'company' => $_POST['customer']['company'],
'email' => $_POST['customer']['email'],
'phone' => $_POST['customer']['phone'],
'address_1' => $_POST['customer']['address'],
'address_2' => '',
'city' => $_POST['customer']['city'],
'state' => '',
'postcode' => $_POST['customer']['postalcode'],
'country' => 'NL'
);
$order = wc_create_order();
foreach ($_POST['product_order'] as $productId => $productOrdered) :
$order->add_product( get_product( $productId ), 1 );
endforeach;
$order->set_address( $address, 'billing' );
$order->set_address( $address, 'shipping' );
$order->calculate_totals();
update_post_meta( $order->id, '_payment_method', 'ideal' );
update_post_meta( $order->id, '_payment_method_title', 'iDeal' );
// Store Order ID in session so it can be re-used after payment failure
WC()->session->order_awaiting_payment = $order->id;
// Process Payment
$available_gateways = WC()->payment_gateways->get_available_payment_gateways();
$result = $available_gateways[ 'ideal' ]->process_payment( $order->id );
// Redirect to success/confirmation/payment page
if ( $result['result'] == 'success' ) {
$result = apply_filters( 'woocommerce_payment_successful_result', $result, $order->id );
wp_redirect( $result['redirect'] );
exit;
}
}
체크아웃 페이지를 건너뛰려면 카트 URL에 추가를 필터링할 수 있습니다.
function so_31787244_redirect_to_checkout( $url ) {
// Remove default cart message
WC()->clear_messages();
// Redirect to checkout
$url = WC()->cart->get_checkout_url();
return $url;
}
add_filter( 'add_to_cart_redirect', 'so_31787244_redirect_to_checkout' );
One Page Checkout과 같은 플러그인을 추구할 수도 있습니다.
언급URL : https://stackoverflow.com/questions/31787244/woocommerce-create-an-order-programmatically-and-redirect-to-payment
반응형
'sourcecode' 카테고리의 다른 글
Configuration Builder를 사용한 기본 경로 설정 (0) | 2023.02.07 |
---|---|
JSON 오더 혼재 (0) | 2023.02.07 |
IIS에서 워드프레스 퍼머링크가 있나요? (0) | 2023.02.07 |
Woocommerce - 그룹화된 제품에 가변 제품을 추가할 수 있습니까? (0) | 2023.02.07 |
php 대신 python에서 WordPress에 가장 가까운 것은 무엇입니까? (0) | 2023.02.07 |