How can we eliminate the field for phone number and billing company on the cc_info.html page. I don't mean just drop the html which is simple... how to we configure it so that we don't need it. I see: {if $config.cc_phone} <tr> <th><b>#_TPL_CC_INFO_PHONE# *</b><br /> <div class="small">#_TPL_CC_INFO_PHONENUM|<br />|<i>|</i># </div></th> <td> <input type="text" class="required" name="cc_phone" size="15" maxlength="15" value="{$cc_address.cc_phone|escape}" /> </td> </tr> {/if} I want to change that "if" to No but its not in the control panel as far as I can see and the manual is, as usual, no help.
What you could do is change the input type to hidden and then specify a default value. What you would end up with is a hidden field that has a pre-populated number in it (like 555-555-5555) that the user could not change during checkout, actually they wouldn't even see the field. You would just need to be sure that your CC processor doesn't require that number to verify the charge.
This can be edited without touching the html or the rconfig. Just go to the payment plugin inc.php. For example, if you're using authorize_aim, go to: amember/plugins/payment/authorize_aim/authorize_aim.inc.php and replace 'phone' => 2, with 'phone' => 0. You can do the same thing for other fields also (like the CVV code, the company, and first name).