Hello with the newest 2.0.26 update there is an issue with the delivery adress
When customer want to put a different delivery adress than his billing adresss when he then clicks to confirm the delivery adress erase by itself?
Hello
Thank you for reporting
There is a fix to do in the file components/com_virtuemart/helpers/cart.php
function saveAddressInCart
around line 1139
replace
//STaddress may be obsolete
if ($type == 'STaddress' || $type =='ST') {
$prefix = 'shipto_';
with
if ($type == 'STaddress' || $type =='ST') {
$prefix = 'shipto_';
$this->STsameAsBT = 0;