I appreciate the update to edit the billing address when a payment fails. However it does not seem to be working for me. After clicking edit, I make adjustments to my address then click UPDATE. Neither the State/Province nor the Country get updated in the database thus resulting in an error when the page reloads.
Has anyone else experienced this?
ERROR- Editing Address on Failed Payment
-
- Lieutenant, Jr. Grade (LT JG)
- Posts: 26
- Joined: Fri Sep 18, 2009 2:24 pm
Re: ERROR- Editing Address on Failed Payment
Whats version of ablecommerce you are using?
-
- Lieutenant, Jr. Grade (LT JG)
- Posts: 26
- Joined: Fri Sep 18, 2009 2:24 pm
Re: ERROR- Editing Address on Failed Payment
AbleCommerce GoldR7 (build 7118)
Re: ERROR- Editing Address on Failed Payment
I just confirmed it, there seems to be problem with editing as described though for me Its only the state that's not being saved. I have reported the issue.
Re: ERROR- Editing Address on Failed Payment
In order to patch this, edit Website\ConLib\Account\BillingAddress.ascx.cs file and locate following line of code
and replace it with
Save the file and test again. It should save the changes made to state now.
Code: Select all
List<OrderShipment> shipments = GetShipToBilling(this.Order);
Code: Select all
List<OrderShipment> shipments = GetShipToBilling(this.Order);
BillToProvince.Visible = !BillToProvinceList.Visible;
-
- Lieutenant, Jr. Grade (LT JG)
- Posts: 26
- Joined: Fri Sep 18, 2009 2:24 pm
Re: ERROR- Editing Address on Failed Payment
Sorry for the late follow-up. I made the update. The page doesn't error out anymore but the state value does not get saved. It updates to NULL. Were you able to verify that you could change states?