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.
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
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]);.