woocommerce-payments

Installation
SKILL.md

WooCommerce Payment Gateway Development

Reference for building payment gateways with classic and block checkout support.


1. Gateway Registration

add_filter( 'woocommerce_payment_gateways', function ( array $gateways ): array {
    $gateways[] = 'MCE_Gateway';
    return $gateways;
} );

Extend WC_Payment_Gateway and implement process_payment() and optionally process_refund().


Installs
6
GitHub Stars
3
First Seen
Feb 9, 2026
woocommerce-payments — peixotorms/odinlayer-skills