Contributions
Remove Address Book For Fraud Protection
This is my first Contrib, so be kind!
It struck me that having an address book, where customers could buy the product with one address and send it to another address allowed people to use stolen credit cards. The goods can be sent to them, whilst using the address associated with the credit card to allow the credit card to be processed. So I made this contrib to allow this feature to be removed to aid in fraud protection. It is unlikely that you have modified these files so you can just overwrite your stock os files. If you have made modifications to these files, use a comparison tool to make the changes.
BACKUP YOUR FILES FIRST!!
Expand All / Collapse All
Thanks for remember, this contribution is for remove all the shipping addresses, if you just do adres book entries 1 it will not be complied.
There is one more (missing) thing that I use but forgot to tell you.To complete it
admin -> Configuration -> Maximum Values -> Address Book Entries -> edit as 1
in zip file included correct update file.
Before this you must install v0.3 by faaliyet.
( Advanced Update - 8 steps )
JUST--
|
v
Open catalog/checkout_process.php
Find:
if ($order->content_type != 'virtual') {
$email_order .= "n" . EMAIL_TEXT_DELIVERY_ADDRESS . "n" .
EMAIL_SEPARATOR . "n" .
tep_address_label($customer_id, $sendto, 0, '', "n") . "n";
}
$email_order .= "n" . EMAIL_TEXT_BILLING_ADDRESS . "n" .
EMAIL_SEPARATOR . "n" .
tep_address_label($customer_id, $billto, 0, '', "n") . "nn";
And replace with:
if ($order->content_type != 'virtual') {
/* $email_order .= "n" . EMAIL_TEXT_DELIVERY_ADDRESS . "n" .
EMAIL_SEPARATOR . "n" .
tep_address_label($customer_id, $sendto, 0, '', "n") . "n"; */
}
/* $email_order .= "n" . EMAIL_TEXT_BILLING_ADDRESS . "n" .
EMAIL_SEPARATOR . "n" .
tep_address_label($customer_id, $billto, 0, '', "n") . "nn"; */
Remove all address books v0.3
included updates_by_faaliyet.txt file..
and included LAST_FULLPACKAGE.
another line to comment in chechout confirmation to remove link to checkout shipping address.
this is full package i just add
Find this line
<td class="main"><?php echo '<b>' . HEADING_DELIVERY_ADDRESS . '</b> <a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING_ADDRESS, '', 'SSL') . '"><span class="orderEdit">(' . TEXT_EDIT . ')</span></a>'; ?></td>
And replace with
<!--<td class="main"><?php echo '<b>' . HEADING_DELIVERY_ADDRESS . '</b> <a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING_ADDRESS, '', 'SSL') . '"><span class="orderEdit">(' . TEXT_EDIT . ')</span></a>'; ?></td>-->
all credits are for the origin author.
This simple little upgrade makes checking out much more simple when using the remove address book for fraud mod. Since using the fraud mod customers can only ship to the billing address anyway the billing address section has been removed and pages have been streamlined so checkout is now in 3 clicks!!
NO DOWNLOAD HERE
methods I've used
I disallow paypal or any other automatic payment method when address does not equal billing address. tell customer reason and
1-they will be contacted to confirm order to address.After they order confirm by calling customer.
Or
2- order will not be processed for 48hrs. you wait 48 hrs to process since that is about how long it would take someone to report a missing card.
DO NOT UPLOAD THE CREATE_ACCOUNT.php included in the file I added this to the pacakge by accident!
Use this Package instead to save accidents!
This is my first Contrib, so be kind!
It struck me that having an address book, where customers could buy the product with one address and send it to another address allowed people to use stolen credit cards. The goods can be sent to them, whilst using the address associated with the credit card to allow the credit card to be processed. So I made this contrib to allow this feature to be removed to aid in fraud protection. It is unlikely that you have modified these files so you can just overwrite your stock os files. If you have made modifications to these files, use a comparison tool to make the changes.
BACKUP YOUR FILES FIRST!!
Note: Contributions are used at own risk.