Forum Replies Created

Viewing 1 replies (of 1 total)
  • Forum: Plugins
    In reply to: [Realia] Payment gateways
    Thread Starter ck1066

    (@ck1066)

    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.

Viewing 1 replies (of 1 total)