I am creating a Woocommerce shop. The client wants to use the payment plugin "Mollie" to accept iDeal payments (Dutch).
When people order items from the webshop, they should be able to order everything they want without paying. After that, the shop owner should receive an email and check the order.
The shop owner reviews the order by checking the stock of the ordered products. From this point on there should be there scenario's:
Everything is in stock. The package is weighed. Shippingcosts are added. The customer will receive a payment link.
Nothing is in stock. A message should be sent to the customer with an out-of-stock message.
Only part of the order is in stock. The order should be changed in the Woocommerce orders-panel. The remaining order is weighed and packed. The customer will receive a payment link.
When the order is accepted, the customer should receive a payment link with the normal payment methods (including "Mollie" payments).
Is there a way to make this happen? Thanks in advance!
I understand you are your orders are set to ON HOLD and your order notes displays “Payment pending (unilateral)”. This message usually relates to an issue with the set up of your PayPal account. Please reach out to PayPal support and have them verify that everything is in order.
When taking payments via WooCommerce (e.g. via PayPal), your “Orders” page will show the following status labels: Pending payment: This means the order has been created on your website, but the customer's payment hasn't been received yet.
Manually capture an authorized chargeGo to WooCommerce > Orders and find the order associated with the charge. Click Choose an action… Click Capture charge. Click Update.
Setup. To setup Order Status Control, go to WooCommerce > Settings > General and update the Orders to Auto-Complete setting to determine which paid orders should skip the Processing status and go directly to Completed status: None: No orders will be automatically completed.
I know this is a year after, but that could help someone else :-).
My customer would like a similar process, shop customers would not be able to pay online until the shop owner confirm order.
Solution:
We used this filter to switch payment gateways between the 2 endpoints.
function my_switch_gateways_by_context($available_gateways) {
global $woocommerce;
$endpoint = $woocommerce->query->get_current_endpoint();
if ($endpoint == 'order-pay') {
unset($available_gateways['cod']);
} else {
unset($available_gateways['stripe']);
}
return $available_gateways;
}
add_filter( 'woocommerce_available_payment_gateways', 'my_switch_gateways_by_context');
I hope this helps.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With