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