Do Not Want To Display Payment Processor

Discussion in 'Payments processing' started by pgranere, Jun 16, 2004.

  1. pgranere

    pgranere Guest

    On my signup page it says whom my payment gateway is. Is there a way remove this so that my users don't know whom my gateway is? I really don't want the world to call authorize.net if they have any problems
  2. alex

    alex aMember Pro Customer Staff Member

    Joined:
    Jan 24, 2004
    Messages:
    6,021
    Of course, just edit signup template (templates/signup.html) , and replace
    <b>{$p.title}</b> - {$p.description}<br>
    to something like:
    <b>Secure credit card payment<br>

    of course, it works only if you have 1 processor enabled. In other case, edit title and description inside payment plugin files, like:
    amember/plugins/payment/authorize_aim/authorize_aim.inc.php
    replace
    return array(
    'title' => 'Authorize AIM',
    'description' => 'Credit card payment',
    'phone' => 2,
    'company' => 1,
    'code' => 1,
    'name_f' => 2
    );
    to
    return array(
    'title' => 'Credit card payment',
    'description' => 'pay by VISA/MC',
    'phone' => 2,
    'company' => 1,
    'code' => 1,
    'name_f' => 2
    );

Share This Page