View Single Post
  #29  
Old 05-09-2007, 05:47 PM
  wjbrewer's Avatar 
wjbrewer wjbrewer is offline
Banned
 

X-Adept
  
Join Date: Feb 2005
Location: Pittsburgh, PA
Posts: 504
 

Default Re: Displaying download links after purchase

Quote:
Originally Posted by Prest0
The only difference is that instead of the word "Download" is has
Code:
{$lng.lbl_download}
. Yet my invoices don't display download links.

This is just the language variable, it will not make a difference in displaying the download link. I would make sure the order is being processed, if it is queued there will not be a link.

It is easy to miss the link because it is very small, here is a screenshot:

Image1.gif

To change it to a button and make it more visible change this code:

Code:
<a href="{$catalogs.customer}/download.php?id={$product.download_key}" class="SmallNote" target="_blank">{$lng.lbl_download}</a>

to this:

Code:
{include file="buttons/button.tpl" button_title=$lng.lbl_download style="button" href="`$catalogs.customer`/download.php?id=`$product.download_key`"}

Then it should look like this:

Image2.gif
Reply With Quote