After a little research I found out there is a filter for Realia_payment gateway which I assmume can be added to a child theme’s funtions.php scripts.
How do I configure realia_payment_gateway filter to use Paid Membership pro, or similar?
add_filter( ‘realia_payment_gateways’, ‘custom_gateway’ );
function custom_gateways( array $gateways ) {
$gateways[] = array(
‘id’ => ‘custom-gateway’,
‘title’ => ‘Custom Gateway’,
‘content’ => ‘CUSTOM-FORM-HERE-IF-NEEDED’,
‘proceed’ => true,
);
}
If ANYONE can help with this integration please contact me.