Skip to content

Instantly share code, notes, and snippets.

<?php
add_action('after_setup_theme', 'mwp_fake_gateway_init', 0);
function mwp_fake_gateway_init() {
if ( !class_exists( 'WC_Payment_Gateway' ) ) return;
class WC_MWP_FAKE extends WC_Payment_Gateway {
public function __construct(){
$this->author = 'Mojtab Darvishi';
$this->id = 'mwp_fake';
$this->method_title = __('Fake Gateway', 'woocommerce');
$this->method_description = __( 'Woocommerce Fake Gateway or Test Payments', 'woocommerce');