For this module to work properly with other defined shipping methods I had to make one small change. This is the fix to the problem I was having in my May 31, 2005 post where the "Select a Carrier" drop down box was disappearing after I selected "Other Carriers":
Go to skin1/customer/main/cart_totals.tpl
Find:
Code:
{* $Id: cart_totals.tpl,v 1.67.2.10 2005/03/14 13:03:32 mclap Exp $ *}
<DIV align="right">
{if $config.Shipping.disable_shipping ne "Y"}
{if $login ne "" or $config.General.apply_default_country eq "Y" or $cart.shipping_cost gt 0}
Change To:
Code:
{* $Id: cart_totals.tpl,v 1.67.2.10 2005/03/14 13:03:32 mclap Exp $ *}
<DIV align="right">
{if $config.Shipping.disable_shipping ne "Y"}
{if $login ne "" or $config.General.apply_default_country eq "Y" or $cart.shipping_cost gt 0 or $estimate eq "NO"}