This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Make sure WooCommerce is active | |
if ( ! in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) return; | |
//Adds Child Gateway Class | |
add_action( 'plugins_loaded', 'init_call_for_payment_info' ); | |
function init_call_for_payment_info() { | |
class WC_Gateway_Call_for_Payment_Info extends WC_Payment_Gateway { | |
//Construct Gateway |