Hi Rick,
You can change that via lines 51 - 58 in the checkout_ship.tpl.php template file.
Change this:
PHP Code:
<?php if ($Rate['Delivery_Days']): ?>
<div class="dlv_days">
<?php print $Rate['Delivery_Days'] ?> day<?php if ($Rate['Delivery_Days'] != 1) print 's' ?> to delivery
<?php if ($Rate['Delivery_Time']): ?>
by <?php print $Rate['Delivery_Time'] ?>
<?php endif; ?>
</div>
<?php endif; ?>
To this:
PHP Code:
<?php if ($Rate['Delivery_Days']): ?>
<div class="dlv_days">
<?php print $Rate['Delivery_Days'] ?> day<?php if ($Rate['Delivery_Days'] != 1) print 's' ?> enroute from date of shipment
<?php if ($Rate['Delivery_Time']): ?>
by <?php print $Rate['Delivery_Time'] ?>
<?php endif; ?>
</div>
<?php endif; ?>
For instructions on modifying template files, see this page:
http://www.squirrelcart.com/help/?Mo...Templates.html