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