Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do remove 'credit card (save)' Payment method from Magento?

Tags:

magento

I’m using paypal payment product. If you see the attached file i get 3 options. The first 2 work fine and are actually all i require. The last option

Credit Card (save) doesn’t seem to work. Can someone explain what this option is, also how can i remove it.

alt text

like image 939
frosty Avatar asked Dec 18 '10 12:12

frosty


People also ask

How do you natively enable savings credit cards in Magento payment method?

With Magento save customer credit card, set instructions to show along with the payment method on the checkout page. Set the maximum and minimum order total to enable the use of Saved Credit Cards method. Customers' can see Saved Credit Card payment details from their My Account section in the frontend.


2 Answers

The Credit Card saved method will allow you to accept credit card information for a purchase, but Magento will make no attempt to verify its accuracy other than a simple luhn checksum. The credit card information will be stored in the database, encrypted using a call to

Mage::helper('core')->encrypt($data)

In a default 1.4.2 instal, you can view the payment information (including the credit card) with the following SQL query

SELECT * FROM sales_flat_order_payment

You can view this Payment method in

System -> Config -> Payment Methods -> Saved CC

You can also set it's "enabled" config value to "No", which will remove this as an option.

Fully securing credit card information is a Hard Thing™, both from a technical and bureaucratic standpoint. Unless you and your team have the expertise to do it (which, based on your question, I'm going to assume is a no) you don't want this option turned on.

like image 137
Alan Storm Avatar answered Oct 29 '22 00:10

Alan Storm


Just disable it under the payment methods configuration in back-end

like image 40
Anton S Avatar answered Oct 29 '22 01:10

Anton S