Force the user to pick a shipping method before checking out. Implements RFE #10940

If there is only 1 shipping method, automatically choose it.  Displays
an message to the user if they have an address, but no shipping method.
This commit is contained in:
Colin Kuskie 2009-09-28 10:04:52 -07:00
parent cad1d99844
commit e5ead13da3
4 changed files with 48 additions and 16 deletions

View file

@ -1659,6 +1659,18 @@ our $I18N = {
context => q|Error message in the manage ship driver screen.|,
},
'Choose a shipping method' => {
message => q|Choose a shipping method|,
lastUpdated => 0,
context => q|Label to make the user choose a shipping method|,
},
'Choose a shipping method and update the cart to checkout' => {
message => q|Choose a shipping method and update the cart to checkout|,
lastUpdated => 0,
context => q|Label to make the user choose a shipping method|,
},
};
1;