Results 1 to 2 of 2

Hybrid View

  1. #1
    Join Date
    Apr 2009
    Location
    Chicago, IL
    Posts
    45
    Plugin Contributions
    0

    Default Make download available by time

    Hi y'all
    I'd like to prevent a download from being available until midnight of the day that it's purchased - I know it's a random request, but any thoughts about where to start? I don't know a ton about php datetime controls, but since midnight of the purchase date is technically the beginning of the next day, I basically need to say that if it's the purchase date + 1 or later, the download is available.

    Thanks for your time!
    I'm Running v.1.3.8a btw

  2. #2
    Join Date
    Apr 2009
    Location
    Chicago, IL
    Posts
    45
    Plugin Contributions
    0

    Default Re: Make download available by time

    Got it! For anybody wanting to implement this on your shop, I edited the tpl_modules_downloads.php file in includes/templates/my template/templates and added:

    Code:
    <?php
    $purchase_date = $downloads->fields['date_purchased_day'] ;
    $todays_date = date("Y-m-d");
    $today = strtotime($todays_date);
    $available_date = strtotime($purchase_date.'+ 1 day'); 
    ?>
    and then served up the download link with an if else statement like so

    Code:
    <?php if ($available_date <= $today) { ?>
    <?php echo '<a href="' . zen_href_link(FILENAME_COUPON,'order=' . $downloads->fields['orders_products_download_id'] . '&id=' . $i, NONSSL) . '">' . zen_image_button(BUTTON_IMAGE_DOWNLOAD, BUTTON_DOWNLOAD_ALT) . '</a>' ;?>
    <?php
     } else { DOWNLOADS_CONTROLLER_ON_HOLD_MSG } ?>

 

 

Similar Threads

  1. Replies: 5
    Last Post: 11 Jan 2022, 07:46 PM
  2. v155 Data Available - Make stock available mod , does it exist ?
    By mesnitu in forum General Questions
    Replies: 3
    Last Post: 19 Jun 2016, 08:35 PM
  3. Not Available At This Time
    By Nuttshell in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 24 Nov 2011, 11:14 PM
  4. Special Available Time - Expiry Time
    By pgeven in forum Setting Up Specials and SaleMaker
    Replies: 1
    Last Post: 8 Jun 2008, 06:18 PM
  5. Not Available At This Time
    By mikeylikesyou in forum General Questions
    Replies: 3
    Last Post: 6 Feb 2008, 02:33 AM

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