I have a problem. It seems that the only shipping module that seems to be working is the Individual Shipping Prices.
What i basically have the the individual Shipping prices intalled - this is to be used for the US only
I'm want to use antoher shipping model for the rest of the world.
For this is have zones setup. One zone is the US, the other zone is the rest of the world.
I have Individual Shipping setup for the US zone and it shows up with no problem. But not matter what i do i can't get any shipping method to show up for the rest of the world. I can however switch Individual Shipping to the world zone and it works fine.
Is there something in the individual shipping module that is over riding the other methods? I found this is the shipping.php file:
// BOF: Individual Shipping Prices
// Show either normal shipping modules or Individual shipping module when Individual Shipping Module is On
// Show Individual Shipping Only
if (tep_get_configuration_key_value('MODULE_SHIPPING_INDVSHIP_STATUS') and $shiptotal) {
$include_modules[] = array('class'=> 'indvship', 'file' => 'indvship.php');
} else {
// All Other Shipping Modules
while (list(, $value) = each($this->modules)) {
$class = substr($value, 0, strrpos($value, '.'));
// Don't show Individual Shipping Module
if ($class != 'indvship') {
$include_modules[] = array('class' => $class, 'file' => $value);
}
}
}
// EOF: Individual Shipping Prices
Does this have something to do with it? I've been searching for days, but just can't seem to figure it out..
P.S. When i saw shows up i mean on the shipping page during the shipping checkout..