Descrizione
Questo plugin è stato chiuso il 9 Aprile 2025 e non è più disponibile per il download. Motivazione: Violazione linee guida.
Recensioni
22 Febbraio 2025
Great work. Very helpful plugin
29 Giugno 2022
Awesome plugin. Great for small eCommerce websites.
26 Marzo 2022
1 risposta
Good effort. Sad that it doesn’t authenticate the details supplied. You can enter the wrong phone number and any Mpesa transaction code and get your order processed. I’d therefore discourage using this on platforms selling digital products where the customer gains access immediately after clicking the checkout button
1 Gennaio 2021
Came across this plugin when trying to set up a small ecommerce site. I was looking for an MPESA payment gateway and was only able to find plugins that require you to pay upwards of 5k to integrate with your site. This plugin gave me a solution especially considering i was just starting and a simple and free plugin would be of great help.
So this plugin enables you to provide payment details in the check out page. A customer sends money to your number then confirms the details on the form provided before the order goes through.
The challenge with the plugin however it cannot confirm the details provided in real time. You have to log into your dashboard and confirm the payment.
So it is very crucial to have the order move to ‘processing’ status instead of ‘completed’ status which allows customers who haven’t really paid to download digital product files if available.
To do this add, this code to your child theme functions.php
//change order status from completed to processing to allow for manual payment confirmation
add_action( ‘woocommerce_order_status_completed’, ‘completed_to_processing’);
function completed_to_processing($order_id){
$order = new WC_Order($order_id);
$order->update_status(‘processing’);
}
Otherwise, all is good.
16 Maggio 2020
A long overdue solution to Small and medium businesses.
Another great product from Joe Njenga . Implementing it , so far so good. Consider rolling it to entire WordPress not only woocommerce.
Contributi e sviluppo
“Send to Mpesa Payment Gateway” è un software open source. Le persone che hanno contribuito allo sviluppo di questo plugin sono indicate di seguito.
CollaboratoriTraduci “Send to Mpesa Payment Gateway” nella tua lingua.
Ti interessa lo sviluppo?
Esplora il codice segui il repository SVN, segui il log delle modifiche tramite RSS.