Dan1 Posted April 14, 2011 Share Posted April 14, 2011 4 months after setting up PS to accept credit cards through authorize.net I was hit with fraud for the firs time. I lost about $1000 to a chargeback. I have no recourse because I shipped the products to an address that was different than the credit card billing address. Most of the products in my shop don't appeal to fraudsters, but I do carry some electronics that I will never again ship to an address that is different than the billing address. I wonder if there is a module that can be applied on a per product basis, that will not allow the customer to check out if the shipping address and billing address are not the same? This will save time canceling orders, refunding payments, and informing the customer about the situation. Link to comment Share on other sites More sharing options...
Dan1 Posted April 14, 2011 Author Share Posted April 14, 2011 Hello,What is the cost of your service? Link to comment Share on other sites More sharing options...
Dan1 Posted April 14, 2011 Author Share Posted April 14, 2011 I understand you're not in the business of selling modules. But it looks like yours could be easily tweaked to block orders that have mismatched shipping and billing addresses. In this case it would be what I'm looking for and I'd buy it. At this time I don't need the service. It's probably more suitable for higher volume shops than mine. Link to comment Share on other sites More sharing options...
ScubaLessonsInc Posted May 25, 2011 Share Posted May 25, 2011 Really I think it would be wonderful if someone could actually ANSWER Dan's question as I too NEED that answer. Instead it seems like a sales pitch. I would like to have the billing address and shipping address match or not let the order go through. This is the best method for preventing fraud and is what we want. Is there a way to do this? If so, what is the method? Thank you, Tina Link to comment Share on other sites More sharing options...
fitao Posted May 30, 2011 Share Posted May 30, 2011 hi. can you give me your shop url.Best regards Link to comment Share on other sites More sharing options...
btc.dev Posted July 11, 2011 Share Posted July 11, 2011 @ScubaLessonsIncHi, the modification to force the shipping address to be equal to the invoicing address is very simple and easy to do.If you have Prestashop version 1.3.6 (works probably also for other 1.3 versions but I did not test), in the file Prestashop/order.php at line 181 after the lines $cart->id_address_delivery = intval(Tools::getValue('id_address_delivery')); $cart->id_address_invoice = Tools::isSubmit('same') ? $cart->id_address_delivery : intval(Tools::getValue('id_address_invoice')); add the lines if ($cart->id_address_delivery != $cart->id_address_invoice) $errors[] = Tools::displayError('id_address_delivery not equal to id_address_invoice'); If you have Prestashop 1.4.*, in the file Prestashop/controllers/OrderController.php at line 215 after the lines self::$cart->id_address_delivery = (int)(Tools::getValue('id_address_delivery')); self::$cart->id_address_invoice = Tools::isSubmit('same') ? self::$cart->id_address_delivery : (int)(Tools::getValue('id_address_invoice')); add the lines if (self::$cart->id_address_delivery != self::$cart->id_address_invoice) $this->errors[] = Tools::displayError('id_address_delivery not equal to id_address_invoice'); And that's it.Another option would be to remove totally the possibility to have a shipping address that can be different that the invoicing address but that would require a bit more work, contact us if you want to implement that.Regards,BTConsulting Link to comment Share on other sites More sharing options...
ScubaLessonsInc Posted July 11, 2011 Share Posted July 11, 2011 Thank you soooooooooooo much! Wonderful help! Thanks. Link to comment Share on other sites More sharing options...
Dan1 Posted July 11, 2011 Author Share Posted July 11, 2011 Thank you very much btc.Is there a way to apply this to some products and not others, perhaps apply it to one category? Link to comment Share on other sites More sharing options...
ScubaLessonsInc Posted February 24, 2012 Share Posted February 24, 2012 Hey newbie.. this solution was awsome all along but the new verion 1.4.7.0 I am not seeing that file to edit.. Can you tell me where I make the changes now? Link to comment Share on other sites More sharing options...
mm99 Posted April 23, 2014 Share Posted April 23, 2014 Hello Is it any solution for prestashop 1.5.6? I lost too much money for faud credit card,if somebody can help me on this please Thank you in advance Link to comment Share on other sites More sharing options...
tom52 Posted November 29, 2014 Share Posted November 29, 2014 Does it work for the latest 1.6xxx Link to comment Share on other sites More sharing options...
tizdaz Posted February 25, 2015 Share Posted February 25, 2015 same here, any info on how to do this for 1.5? Why is there no option in BO for us to only allow shipping to billing address? Link to comment Share on other sites More sharing options...
barreraantonio93 Posted March 10, 2015 Share Posted March 10, 2015 I think there is an update in the latest version Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now