Results 1 to 3 of 3
  1. #1
    Join Date
    Jun 2011
    Location
    Yate South Gloucestershire
    Posts
    40
    Plugin Contributions
    0

    Default Delivery in 2/3 days

    Good Afternoon all,

    I use Edition 1.3.9h and wiould like to ask the following question,
    When one is out of stock for a particular item and delivery is expected in 2/3 days. How and where does one enter that "2/3 Days" rather than show that you have "0" Stock. if i try to enter it in the quantity space it shows as 2 on the web Site.
    Thanks

    Norman(rafwraf)

  2. #2
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Delivery in 2/3 days

    You could use the "date available" setting on the product. This will show at the bottom of the product info page

    This product will be in stock on Friday 26 August, 2011.

    You could move the code that outputs this to be near the add to cart button, to be more useful for your purpose.

  3. #3
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Delivery in 2/3 days

    The date available code is integrated with the date added code, so you would want to change this section in tpl_product_info_display.php from
    PHP Code:
    <!--bof Product date added/available-->
    <?php
      
    if ($products_date_available date('Y-m-d H:i:s')) {
        if (
    $flag_show_product_info_date_available == 1) {
    ?>
      <p id="productDateAvailable" class="productGeneral centeredContent"><?php echo sprintf(TEXT_DATE_AVAILABLEzen_date_long($products_date_available)); ?></p>
    <?php
        
    }
      } else {
        if (
    $flag_show_product_info_date_added == 1) {
    ?>
          <p id="productDateAdded" class="productGeneral centeredContent"><?php echo sprintf(TEXT_DATE_ADDEDzen_date_long($products_date_added)); ?></p>
    <?php
        
    // $flag_show_product_info_date_added
      
    }
    ?>
    <!--eof Product date added/available -->
    to
    PHP Code:
    <!--bof Product date added-->
    <?php
      
    if ($products_date_available date('Y-m-d H:i:s')) {
    //do nothing
      
    } else {
        if (
    $flag_show_product_info_date_added == 1) {
    ?>
          <p id="productDateAdded" class="productGeneral centeredContent"><?php echo sprintf(TEXT_DATE_ADDEDzen_date_long($products_date_added)); ?></p>
    <?php
        
    // $flag_show_product_info_date_added
      
    }
    ?>
    <!--eof Product date added -->
    and put this part
    PHP Code:
    <!--bof Product date available-->
    <?php
      
    if ($products_date_available date('Y-m-d H:i:s')) {
        if (
    $flag_show_product_info_date_available == 1) {
    ?>
      <p id="productDateAvailable" class="productGeneral centeredContent"><?php echo sprintf(TEXT_DATE_AVAILABLEzen_date_long($products_date_available)); ?></p>
    <?php
        
    }
      }
    ?>
    <!--eof Product date available -->
    where you want it higher in the file.

 

 

Similar Threads

  1. Ozpost test days - cut 30+ days too early
    By stewade in forum Addon Shipping Modules
    Replies: 10
    Last Post: 29 May 2012, 10:03 PM
  2. Per Item - But different prices for 1 day delivery, 3 day delivery etc.
    By rowby in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 28 Nov 2010, 10:25 PM
  3. Free Delivery Coupon still adding VAT/TAX for delivery
    By PudzPud in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 1
    Last Post: 12 Oct 2009, 08:57 AM
  4. days of respite
    By tekkjeskj in forum Customization from the Admin
    Replies: 6
    Last Post: 5 Dec 2007, 05:16 PM

Posting Permissions

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