Download link for downloadable products

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
15 years ago
I cannot get any kind of download link to show for a customer for a downloadable product.  How does a customer get the download?

I can get it to work for the sample downloads, but not for the actual purchase.
15 years ago
A customer can see download link on order details page when payment status of an order is PAID
15 years ago
I have tried 4 times, and each order is in status paid and they're not showing up.

I have a downloadable product that I've set to $0 for the cost for testing, and I'm using a PO number for payment so I'm not actually hitting a payment gateway.

So the links aren't there, but the status is in paid.
15 years ago
I have the same problem, what is the solution?
15 years ago
Just tested it here - demo.nopCommerce.com. It works fine. Purchase this downloadable product and let me know your order id. After it's done, I'll mark it as paid and you'll see 'download' link (order details page)
15 years ago
I did figure it out.  The link blends in and is not very obvious.  Something more like "Download your product here" would be best, and in a different color.
15 years ago
You can easily change the text in content :
management --> localisation

You can also change text style to suit your needs
8 years ago
haydie wrote:
You can easily change the text in content :
management --> localisation

You can also change text style to suit your needs


I am having this same issue where the "download" link is not very noticeable.  How can I change the text to "download your product here" or something similar in version 3.8?

Also, is there a way to send the download link in the order placed customer email?

Thanks,
Dave
8 years ago
bartman9 wrote:
You can easily change the text in content :
management --> localisation

You can also change text style to suit your needs

I am having this same issue where the "download" link is not very noticeable.  How can I change the text to "download your product here" or something similar in version 3.8?

Also, is there a way to send the download link in the order placed customer email?

Thanks,
Dave


Also, is there a way to send the download link in the order placed customer email?==>You have to customize

MessageTokenProvider.cs

current code is ==>

//add download link
                if (_downloadService.IsDownloadAllowed(orderItem))
                {
                    //TODO add a method for getting URL (use routing because it handles all SEO friendly URLs)
                    string downloadUrl = string.Format("{0}download/getdownload/{1}", GetStoreUrl(order.StoreId), orderItem.OrderItemGuid);
                    string downloadLink = string.Format("<a class=\"link\" href=\"{0}\">{1}</a>", downloadUrl, _localizationService.GetResource("Messages.Order.Product(s).Download", languageId));
                    sb.AppendLine("<br />");
                    sb.AppendLine(downloadLink);
                }
6 years ago
I changed my download option from manual to automatic after payment and anyone who has previous purchased if not getting 'n/a', not the 'download' link?  How can this be fixed?
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.