on the cart.php page, the row for showing the shipping has been removed.
find the following code:
<?php
  //WA eCart Merchandizing Show End
  //ecart="WA_Store_Cart"
  }
  ?>
            <?php
  //WA eCart Merchandizing Show Start
  //ecart="WA_Store_Cart"
  if ($WA_Store_Cart->GetCharges() > 0)     {
  ?>
            <tr>
              <th>Charges:</th>
              <td><?php echo WA_eCart_DisplayMoney($WA_Store_Cart, $WA_Store_Cart->GetCharges()); ?></td>
            </tr>
            <?php
  //WA eCart Merchandizing Show End
  //ecart="WA_Store_Cart"
  }
  ?>
            <?php
  //WA eCart Merchandizing Show Start
  //ecart="WA_Store_Cart"
  if ($WA_Store_Cart->GetTax() > 0)     {
  ?>
            <tr>
              <th>Sales Tax:</th>
              <td><?php echo WA_eCart_DisplayMoney($WA_Store_Cart, $WA_Store_Cart->GetTax()); ?></td>
            </tr>
            <?php
  //WA eCart Merchandizing Show End
  //ecart="WA_Store_Cart"
  }
  ?>
and change it to:
<?php
  //WA eCart Merchandizing Show End
  //ecart="WA_Store_Cart"
  }
  ?>
            <?php
  //WA eCart Merchandizing Show Start
  //ecart="WA_Store_Cart"
  if ($WA_Store_Cart->GetCharges() > 0)     {
  ?>
            <tr>
              <th>Charges:</th>
              <td><?php echo WA_eCart_DisplayMoney($WA_Store_Cart, $WA_Store_Cart->GetCharges()); ?></td>
            </tr>
            <?php
  //WA eCart Merchandizing Show End
  //ecart="WA_Store_Cart"
  }
  ?>
<?php
  //WA eCart Merchandizing Show Start
  //ecart="WA_Store_Cart"
  if ($WA_Store_Cart->GetShipping() > 0)     {
  ?>
            <tr>
              <th>Shipping:</th>
              <td><?php echo WA_eCart_DisplayMoney($WA_Store_Cart, $WA_Store_Cart->GetShipping()); ?></td>
            </tr>
            <?php
  //WA eCart Merchandizing Show End
  //ecart="WA_Store_Cart"
  }
  ?>
<?php
  //WA eCart Merchandizing Show Start
  //ecart="WA_Store_Cart"
  if ($WA_Store_Cart->GetTax() > 0)     {
  ?>
            <tr>
              <th>Sales Tax:</th>
              <td><?php echo WA_eCart_DisplayMoney($WA_Store_Cart, $WA_Store_Cart->GetTax()); ?></td>
            </tr>
            <?php
  //WA eCart Merchandizing Show End
  //ecart="WA_Store_Cart"
  }
  ?>
if you do not wish to use shipping rate lookup, disable shipping in the WA_Globals:
$WAGLOBAL_Shipping_Enabled = false;


