id == $order_id && $order->order_key == $order_key && $order->status=='pending') : // 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']); $data = (array) maybe_unserialize( get_post_meta( $order_id, 'order_data', true ) ); $data['payment_method'] = $payment_method; update_post_meta( $order_id, 'order_data', $data ); $available_gateways = woocommerce_payment_gateways::get_available_payment_gateways(); $result = $available_gateways[$payment_method]->process_payment( $order_id ); // Redirect to success/confirmation/payment page if ($result['result']=='success') : wp_safe_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 messages woocommerce::show_messages(); // Show form woocommerce_pay_for_existing_order( $order ); elseif ($order->status!='pending') : 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 && $order->status=='pending') : ?> payment_method, $order_id ); ?>