Is there a way to hide and not require the Security Code in PayPal Pro? Per my fraud control settings at PayPal, I don't need it (and if a wrong value is input PayPal ignores it anyway). Reason to remove the field: why require it if unused? Many sites don't rquire it. And it is leading to corner-case problems as described here: http://www.amember.com/forum/thread...arning-user-gets-billed-but-no-product.14338/ Thanks
Edit /amember/application/cc/plugins/paypal-pro.php and change this: PHP: public function getFormOptions() { $ret = parent::getFormOptions(); $ret[] = self::CC_TYPE_OPTIONS; return $ret; } to PHP: public function getFormOptions() { $ret = array(self::CC_PHONE, self::CC_TYPE_OPTIONS); return $ret; }