I'm trying to figure out if there's a way to use the thumbnail images from the downloads themselves instead of the big "download button" that's included normally.
Normally, to get a download button, I'd use this:
<a href="{url}"><img src="{image_url}" alt="{title}" /></a> <a href="{url}">{title}</a>
The "image_url" gets the default button.
On the "page" display for Download Monitor, it displays a small thumbnail for popular downloads, as well as on the individual downloads pages.
Is there anyway to tap into that and use the thumbnails instead of the button?
I tried this after looking at the page-addon php, but it didn't work:
<a href="{url}"><img src="{thumbnail_url}" alt="{title}" /></a> <a href="{url}">{title}</a>
Any ideas?