+ Reply to Thread
Results 1 to 3 of 3

Thread: How to edit shipping method "days to delivery" details?

  1. #1
    Client
    Join Date
    Nov 2007
    Location
    Minnesota
    Posts
    34
    Squirrelcart version
    v3.3.0

    How to edit shipping method "days to delivery" details?

    How can I edit the description following various shipping options? For example, the following appears for Priority Mail:

    "Priority Mail - $6.50 2 days to delivery"

    The "2 days to delivery claim" has been confusing to some customers. They believe they will receive the package 2 days after ordering, but it should actually say something like "2 days enroute from date of shipment"; some orders may not ship for a day or two after ordering.

    Thanks!

    Rick

  2. #2
    Squirrelcart Staff Jamie's Avatar
    Join Date
    May 2002
    Posts
    6,829
    Squirrelcart version
    v3.3.7
    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

  3. #3
    Client
    Join Date
    Nov 2007
    Location
    Minnesota
    Posts
    34
    Squirrelcart version
    v3.3.0
    Thanks very much, Jamie. That's exactly what I was looking for.

    Rick

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts