Search found 4 matches

by spakinz
Thu Sep 09, 2010 8:30 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: External Download URL for each OrderItem
Replies: 5
Views: 5036

Re: External Download URL for each OrderItem

I've found how to solve it (very easy):

Code: Select all

emailTemplates[0].Parameters.Add("hasDownloadableItems", order.HasDownloadableItems()); // HasDownloadableItems is an extension method
and then, in the template:

Code: Select all

#if $hasDownloadableItems
display message
#end
by spakinz
Wed Sep 08, 2010 11:50 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: External Download URL for each OrderItem
Replies: 5
Views: 5036

Re: External Download URL for each OrderItem

Hello Mazhar, You were right when you said this: Well with the approach I described above you will not be able to use automatic Email feature. Reason is that Email will be triggered as soon as order gets created just before the CheckedOut method gets called so customer will receive invalid links. Yo...
by spakinz
Thu May 06, 2010 10:23 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: External Download URL for each OrderItem
Replies: 5
Views: 5036

Re: External Download URL for each OrderItem

Thank you so much Mazhar. This is exactly what I needed!!

The solution sounds very good. I guess I won't have any problems to implement it.

Thanks agains Mazhar.
Best Regards
by spakinz
Wed May 05, 2010 6:28 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: External Download URL for each OrderItem
Replies: 5
Views: 5036

External Download URL for each OrderItem

Hello, First of all, I've already read these posts: http://forums.ablecommerce.com/viewtopic.php?f=45&t=7300&p=30533&hilit=digital+goods+download+url#p30533 http://forums.ablecommerce.com/viewtopic.php?f=42&t=10722&p=45835&hilit=digital+goods+download+url#p45835 They are related but not exactly what...