In the account details the link "Add/Edit shipment address" doesn't direct to the ship-to address form. Instead it directs to "Add/Edit billing address information".
J. 2.5.6 VM 2.0.9b
EDIT: The problem could be the difference between
editaddressST
and
editAddressSt
found in components/com_virtuemart/views/user/view.html.php line 149
The problem is in the router.php:
line 200
else if($query['task']=='editaddress'){
when changing it back to
else if($query['task']='editaddress'){
it works fine.
Quote from: patbe60 on August 18, 2012, 12:31:28 PM
EDIT: The problem could be the difference between
editaddressST
and
editAddressSt
found in components/com_virtuemart/views/user/view.html.php line 149
The problem was there, thx.