News:

Support the VirtueMart project and become a member

Main Menu

Bugfix: changing shipping address

Started by Simon A., January 31, 2008, 20:08:30 PM

Previous topic - Next topic

Simon A.

I've noticed that shipping costs don't update properly when the user uses the 'back' button to change his address.

This fix is to version 1.0.14, file checkout.index.php.

Around line 168:
           $vars["weight"] = $weight_total;
            $i = 0;
           
            foreach( $PSHOP_SHIPPING_MODULES as $shipping_module ) {

This becomes:
           $vars["weight"] = $weight_total;
            $i = 0;
            $vars["ship_to_info_id"] = $ship_to_info_id;
           
            foreach( $PSHOP_SHIPPING_MODULES as $shipping_module ) {

How do I get this included as an 'official' bugfix?

aravot

You can report bugs and fixes in tracker http://dev.virtuemart.net/cb/project/1 however VirtueMart 1.0.14 probably is the last update to VM 1.0.x series unless major security issues are found, all efforts are directed towards VirtueMart 1.1, so it would be helpful if you could submit bugs or fixes for VM 1.1, thank you.