shortcode_wrapper('woocommerce_pay', $atts); } /** * Outputs the pay page - payment gateways can hook in here to show payment forms etc **/ function woocommerce_pay() { global $woocommerce, $order; if ( isset($_GET['pay_for_order']) && isset($_GET['order']) && isset($_GET['order_id']) ) : // Pay for existing order $order_key = urldecode( $_GET['order'] ); $order_id = (int) $_GET['order_id']; $order = new woocommerce_order( $order_id ); if ($order->id == $order_id && $order->order_key == $order_key && in_array($order->status, array('pending', 'failed'))) : // Set customer location to order location if ($order->billing_country) $woocommerce->customer->set_country( $order->billing_country ); if ($order->billing_state) $woocommerce->customer->set_state( $order->billing_state ); if ($order->billing_postcode) $woocommerce->customer->set_postcode( $order->billing_postcode ); // Pay form was posted - process payment if (isset($_POST['pay']) && $woocommerce->verify_nonce('pay')) : // Update payment method if ($order->order_total > 0 ) : $payment_method = woocommerce_clean($_POST['payment_method']); $available_gateways = $woocommerce->payment_gateways->get_available_payment_gateways(); // Update meta update_post_meta( $order_id, '_payment_method', $payment_method); if (isset($available_gateways) && isset($available_gateways[$payment_method])) : $payment_method_title = $available_gateways[$payment_method]->title; endif; update_post_meta( $order_id, '_payment_method_title', $payment_method_title); $result = $available_gateways[$payment_method]->process_payment( $order_id ); // Redirect to success/confirmation/payment page if ($result['result']=='success') : wp_redirect( $result['redirect'] ); exit; endif; else : // No payment was required for order $order->payment_complete(); wp_safe_redirect( get_permalink(get_option('woocommerce_thanks_page_id')) ); exit; endif; endif; // Show form woocommerce_get_template('checkout/pay_for_order.php'); elseif (!in_array($order->status, array('pending', 'failed'))) : $woocommerce->add_error( __('Your order has already been paid for. Please contact us if you need assistance.', 'woothemes') ); $woocommerce->show_messages(); else : $woocommerce->add_error( __('Invalid order.', 'woothemes') ); $woocommerce->show_messages(); endif; else : // Pay for order after checkout step if (isset($_GET['order'])) $order_id = $_GET['order']; else $order_id = 0; if (isset($_GET['key'])) $order_key = $_GET['key']; else $order_key = ''; if ($order_id > 0) : $order = new woocommerce_order( $order_id ); if ($order->order_key == $order_key && in_array($order->status, array('pending', 'failed'))) : ?> payment_method, $order_id ); ?>