Custom Payment Gateway
-
Hello,
im trying to implement a custom bitcoin payment gateway since Molli does not support it anymore.
I am having trouble in implementing it because the AR Hooks documentation is not very detailed.I Registered a new Gateway this way:
add_filter( ‘arm_get_payment_gateways’, ‘bitcoin_payment’);
function bitcoin_payment($pg_settings) {
//$pg_settings Payment Gateway Settings Array.
$pg_settings[‘custom_gateway’][‘gateway_name’] = ‘Bitcoin Payment Gateway’;
return $pg_settings;
}Now The bitcoin Gateway shows up in wp-admin -> ARmember -> general Settings,
but it is not available in wp-admin -> configure signup plans -> configure -> basic configurationIf someone knows how to solve the specific problem or has some best practice example how to setup a custom gateway, i would highly appreciate it!
Thanks
The topic ‘Custom Payment Gateway’ is closed to new replies.