Skip to main content
The Yabetoo WordPress plugin allows you to easily accept Mobile Money payments on your WordPress/WooCommerce site.

Download Plugin

Download the latest version of the Yabetoo plugin for WooCommerce

Installation

  1. Download the plugin
  2. Log in to your WordPress dashboard as an administrator
  3. Go to Plugins > Add New > Upload Plugin
  4. Select the downloaded yabetoopay-woocommerce.zip file
  5. Click Install Now then Activate

Option 2: Via WordPress Marketplace

  1. Log in to your WordPress dashboard as an administrator
  2. Go to Plugins > Add New
  3. Search for “Yabetoo Payment Gateway”
  4. Click Install Now then Activate

Configuration

  1. Go to WooCommerce > Settings > Payments
  2. Enable “Yabetoo” by clicking the toggle
  3. Click Manage
  4. Configure the following settings:
    • Test/Production Mode
    • Secret API Key
    • Public API Key
    • Payment method description (displayed to customers)
  5. Click Save changes

Customization

Modify Button Appearance

You can customize the payment button appearance by adding custom CSS to your theme:
.yabetoo-payment-button {
    background-color: #your-color;
    color: #text-color;
}

WordPress Hooks

The plugin provides several hooks to customize its behavior:
// Modify payment parameters before creation
add_filter('yabetoo_payment_parameters', function($parameters, $order) {
    // Customize parameters
    return $parameters;
}, 10, 2);

// Action after successful payment
add_action('yabetoo_payment_success', function($order_id) {
    // Your code here
});

Troubleshooting

Common Issues

  1. Payment button not displaying
    • Verify the plugin is activated
    • Ensure API keys are correctly configured
  2. Configuration error
    • Verify you’re using the correct API keys for the selected mode
    • Ensure your site is using HTTPS
  3. Webhooks not received
    • Verify the webhook URL is publicly accessible
    • Confirm the webhook signature is correctly configured

Support

For additional assistance:
Always test the plugin in Test mode before going to production.