Chase Paymentech and Authorize Net

Discussion in 'Payments processing' started by sghimire, Aug 13, 2009.

  1. sghimire

    sghimire New Member

    Joined:
    Jul 11, 2009
    Messages:
    2
    I am using Chase/Paymentech - but they use Authorize AIM to process their transactions. So I need both plugin-'s to be active in order to complete the transaction. However, the user selects "Authorize AIM" on the sign-up page. Currently both Chase/Paymentech and Authorise. Net are visible on the sign-up page. How can I hide the "Chase Paymentech" option - (it sill needs to be active) - I just don't want it to be visible to the user as they sign up.
  2. shahg12

    shahg12 New Member

    Joined:
    Oct 11, 2007
    Messages:
    24
    Hi,

    did you find a solution for this?

    I also want the same thing, payment option should be active but don't want it to show on sign up page? is this even possible?


    thanks
  3. alexander

    alexander Administrator Staff Member

    Joined:
    Jan 8, 2003
    Messages:
    6,279
    Edit /amember/signup.php and change this:
    Code:
        foreach ($paysystems as $k=>$p).
            if (!$p['public']) unset($paysystems[$k]);.
    
    to
    Code:
        foreach ($paysystems as $k=>$p).
            if (!$p['public'] || $k=='paysysname') unset($paysystems[$k]);.
    

Share This Page